Serializable
, Comparable<Transform.TransformType>
public static enum Transform.TransformType extends Enum<Transform.TransformType>
Enum Constant | 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 |
Modifier and Type | Method | Description |
---|---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2018. All rights reserved.