public enum Transformer extends java.lang.Enum<Transformer>
| Enum Constant and Description |
|---|
Accordion |
Alpha |
Cube |
Default |
Depth |
Flip |
Rotate |
Scale |
Stack |
Zoom |
ZoomCenter |
ZoomFade |
ZoomStack |
| Modifier and Type | Method and Description |
|---|---|
static Transformer |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Transformer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transformer Default
public static final Transformer Alpha
public static final Transformer Rotate
public static final Transformer Cube
public static final Transformer Flip
public static final Transformer Accordion
public static final Transformer ZoomFade
public static final Transformer ZoomCenter
public static final Transformer ZoomStack
public static final Transformer Stack
public static final Transformer Depth
public static final Transformer Zoom
public static final Transformer Scale
public static Transformer[] values()
for (Transformer c : Transformer.values()) System.out.println(c);
public static Transformer 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