public static enum Task.ArchitectureType extends Enum<Task.ArchitectureType>
| Enum Constant and Description |
|---|
CONVOLUTION |
RBM |
RECURRENT |
UNKNOWN |
WORDVECTORS |
| Modifier and Type | Method and Description |
|---|---|
static Task.ArchitectureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Task.ArchitectureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Task.ArchitectureType CONVOLUTION
public static final Task.ArchitectureType RECURRENT
public static final Task.ArchitectureType RBM
public static final Task.ArchitectureType WORDVECTORS
public static final Task.ArchitectureType UNKNOWN
public static Task.ArchitectureType[] values()
for (Task.ArchitectureType c : Task.ArchitectureType.values()) System.out.println(c);
public static Task.ArchitectureType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All Rights Reserved.