Package com.ibm.wala.shrike.shrikeCT
Enum TypeAnnotationsReader.TypePathKind
- java.lang.Object
-
- java.lang.Enum<TypeAnnotationsReader.TypePathKind>
-
- com.ibm.wala.shrike.shrikeCT.TypeAnnotationsReader.TypePathKind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TypeAnnotationsReader.TypePathKind>
- Enclosing class:
- TypeAnnotationsReader
public static enum TypeAnnotationsReader.TypePathKind extends java.lang.Enum<TypeAnnotationsReader.TypePathKind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEEPER_IN_ARRAYDEEPER_IN_NESTEDTYPE_ARGUMENTWILDCARD_BOUND
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TypeAnnotationsReader.TypePathKindfromValue(int value)static TypeAnnotationsReader.TypePathKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TypeAnnotationsReader.TypePathKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEEPER_IN_ARRAY
public static final TypeAnnotationsReader.TypePathKind DEEPER_IN_ARRAY
-
DEEPER_IN_NESTED
public static final TypeAnnotationsReader.TypePathKind DEEPER_IN_NESTED
-
WILDCARD_BOUND
public static final TypeAnnotationsReader.TypePathKind WILDCARD_BOUND
-
TYPE_ARGUMENT
public static final TypeAnnotationsReader.TypePathKind TYPE_ARGUMENT
-
-
Method Detail
-
values
public static TypeAnnotationsReader.TypePathKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TypeAnnotationsReader.TypePathKind c : TypeAnnotationsReader.TypePathKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TypeAnnotationsReader.TypePathKind valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromValue
public static TypeAnnotationsReader.TypePathKind fromValue(int value)
-
-