public static enum TypeTransformationParser.OperationKind extends Enum<TypeTransformationParser.OperationKind>
Enum Constant and Description |
---|
OPERATION |
STRING_PREDICATE |
TYPE_CONSTRUCTOR |
TYPE_PREDICATE |
TYPEVAR_PREDICATE |
Modifier and Type | Method and Description |
---|---|
static TypeTransformationParser.OperationKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeTransformationParser.OperationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeTransformationParser.OperationKind TYPE_CONSTRUCTOR
public static final TypeTransformationParser.OperationKind OPERATION
public static final TypeTransformationParser.OperationKind STRING_PREDICATE
public static final TypeTransformationParser.OperationKind TYPE_PREDICATE
public static final TypeTransformationParser.OperationKind TYPEVAR_PREDICATE
public static TypeTransformationParser.OperationKind[] values()
for (TypeTransformationParser.OperationKind c : TypeTransformationParser.OperationKind.values()) System.out.println(c);
public static TypeTransformationParser.OperationKind 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 © 2009–2023 Google. All rights reserved.