public enum FieldTypeClass extends Enum<FieldTypeClass>
Enum Constant and Description |
---|
ASSIGNMENT |
CONSTRAINT |
PROJECT |
RESOURCE |
TASK |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static FieldTypeClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldTypeClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldTypeClass TASK
public static final FieldTypeClass RESOURCE
public static final FieldTypeClass ASSIGNMENT
public static final FieldTypeClass CONSTRAINT
public static final FieldTypeClass PROJECT
public static final FieldTypeClass UNKNOWN
public static FieldTypeClass[] values()
for (FieldTypeClass c : FieldTypeClass.values()) System.out.println(c);
public static FieldTypeClass 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 © 2000–2024 Packwood Software. All rights reserved.