|
JBoss Logging I18n Annotation Processor 1.1.0.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Transform.TransformType>
org.jboss.logging.annotations.Transform.TransformType
public static enum Transform.TransformType
The transform type
| Enum Constant Summary | |
|---|---|
GET_CLASS
Gets the class of the object object passed, Object.getClass(). |
|
HASH_CODE
Gets the hash code of the object, Object.hashCode(). |
|
IDENTITY_HASH_CODE
Gets the identity hash code of the object, System.identityHashCode(Object). |
|
SIZE
Gets the size or length of a String, Collection, Map or array. |
|
| Method Summary | |
|---|---|
static Transform.TransformType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Transform.TransformType[] |
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, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Transform.TransformType GET_CLASS
Object.getClass().
public static final Transform.TransformType HASH_CODE
Object.hashCode().
public static final Transform.TransformType IDENTITY_HASH_CODE
System.identityHashCode(Object).
public static final Transform.TransformType SIZE
String, Collection, Map or array.
| Method Detail |
|---|
public static Transform.TransformType[] values()
for (Transform.TransformType c : Transform.TransformType.values()) System.out.println(c);
public static Transform.TransformType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
JBoss Logging I18n Annotation Processor 1.1.0.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||