public static enum Transform.TransformType extends java.lang.Enum<Transform.TransformType>
| Enum Constant and Description |
|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
static Transform.TransformType |
valueOf(java.lang.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.
|
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.public static Transform.TransformType[] values()
for (Transform.TransformType c : Transform.TransformType.values()) System.out.println(c);
public static Transform.TransformType 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 namejava.lang.NullPointerException - if the argument is null