public static enum CollectionType.Kind extends Enum<CollectionType.Kind>
| Enum Constant and Description |
|---|
Choice |
Sequence |
SequenceOf |
Set |
SetOf |
| Modifier and Type | Method and Description |
|---|---|
static CollectionType.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollectionType.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionType.Kind Sequence
public static final CollectionType.Kind SequenceOf
public static final CollectionType.Kind Set
public static final CollectionType.Kind SetOf
public static final CollectionType.Kind Choice
public static CollectionType.Kind[] values()
for (CollectionType.Kind c : CollectionType.Kind.values()) System.out.println(c);
public static CollectionType.Kind 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 © 2017. All rights reserved.