public static enum MultiChildDescriptor.MyType extends java.lang.Enum<MultiChildDescriptor.MyType>
Enum Constant and Description |
---|
DEFAULT |
IN_ANY_ORDER |
OPTIONALLY |
OPTIONALLY_IN_PATTERN |
Modifier and Type | Method and Description |
---|---|
static MultiChildDescriptor.MyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiChildDescriptor.MyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiChildDescriptor.MyType DEFAULT
public static final MultiChildDescriptor.MyType OPTIONALLY
public static final MultiChildDescriptor.MyType OPTIONALLY_IN_PATTERN
public static final MultiChildDescriptor.MyType IN_ANY_ORDER
public static MultiChildDescriptor.MyType[] values()
for (MultiChildDescriptor.MyType c : MultiChildDescriptor.MyType.values()) System.out.println(c);
public static MultiChildDescriptor.MyType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null