jef.dna.attributes
Enum AttributeTypes
java.lang.Object
java.lang.Enum<AttributeTypes>
jef.dna.attributes.AttributeTypes
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<AttributeTypes>
public enum AttributeTypes
- extends java.lang.Enum<AttributeTypes>
- Author:
- frusso
Method Summary |
static AttributeTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AttributeTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
SourceFile
public static final AttributeTypes SourceFile
ConstantValue
public static final AttributeTypes ConstantValue
Code
public static final AttributeTypes Code
StackMapTable
public static final AttributeTypes StackMapTable
Exceptions
public static final AttributeTypes Exceptions
InnerClasses
public static final AttributeTypes InnerClasses
EnclosingMethod
public static final AttributeTypes EnclosingMethod
Synthetic
public static final AttributeTypes Synthetic
Signature
public static final AttributeTypes Signature
LineNumberTable
public static final AttributeTypes LineNumberTable
LocalVariableTable
public static final AttributeTypes LocalVariableTable
Deprecated
public static final AttributeTypes Deprecated
SourceDebugExtension
public static final AttributeTypes SourceDebugExtension
LocalVariableTypeTable
public static final AttributeTypes LocalVariableTypeTable
RuntimeVisibleAnnotations
public static final AttributeTypes RuntimeVisibleAnnotations
RuntimeInvisibleAnnotations
public static final AttributeTypes RuntimeInvisibleAnnotations
RuntimeVisibleParameterAnnotations
public static final AttributeTypes RuntimeVisibleParameterAnnotations
RuntimeInvisibleParameterAnnotations
public static final AttributeTypes RuntimeInvisibleParameterAnnotations
AnnotationDefault
public static final AttributeTypes AnnotationDefault
values
public static final AttributeTypes[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(AttributeTypes c : AttributeTypes.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static AttributeTypes 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 name