|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DependencyClassification>
org.pfsw.odem.DependencyClassification
public enum DependencyClassification
Specifies the currently supported types
Enum Constant Summary | |
---|---|
ANNOTATION
|
|
CLASS_CONST
|
|
CLASS_REFLECT
|
|
CONSTANT
|
|
CONTAINED_IN
|
|
CONTAINS
|
|
EXTENSION
|
|
FIELD_TYPE
|
|
IMPLEMENTATION
|
|
LOCAL_FIELD_TYPE
|
|
METHOD_PARAM
|
|
METHOD_RESULT
|
|
NEEDS
|
Method Summary | |
---|---|
java.lang.String |
asString()
Returns the external string representation (which is not the same as the enum value name). |
static DependencyClassification |
fromString(java.lang.String valueName)
Returns the enum value with the given name. |
java.lang.String |
getExternalName()
|
java.lang.String |
toString()
Returns a debug string that should not be used in business logic. |
static DependencyClassification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DependencyClassification[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DependencyClassification NEEDS
public static final DependencyClassification EXTENSION
public static final DependencyClassification IMPLEMENTATION
public static final DependencyClassification ANNOTATION
public static final DependencyClassification CLASS_REFLECT
public static final DependencyClassification CLASS_CONST
public static final DependencyClassification CONTAINS
public static final DependencyClassification CONTAINED_IN
public static final DependencyClassification FIELD_TYPE
public static final DependencyClassification CONSTANT
public static final DependencyClassification METHOD_PARAM
public static final DependencyClassification METHOD_RESULT
public static final DependencyClassification LOCAL_FIELD_TYPE
Method Detail |
---|
public static DependencyClassification[] values()
for (DependencyClassification c : DependencyClassification.values()) System.out.println(c);
public static DependencyClassification 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 name
java.lang.NullPointerException
- if the argument is nullpublic static DependencyClassification fromString(java.lang.String valueName)
public java.lang.String getExternalName()
public java.lang.String asString()
public java.lang.String toString()
toString
in class java.lang.Enum<DependencyClassification>
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |