public enum EQuantifierType extends Enum<EQuantifierType>
Modifier and Type | Method and Description |
---|---|
static EQuantifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EQuantifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EQuantifierType none
public static final EQuantifierType all
public static final EQuantifierType some
public static final EQuantifierType any
public static EQuantifierType[] values()
for (EQuantifierType c : EQuantifierType.values()) System.out.println(c);
public static EQuantifierType 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 © 2019. All rights reserved.