public enum AnimationType extends Enum<AnimationType>
Java class for AnimationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AnimationType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="None"/> <enumeration value="FadeIn"/> <enumeration value="FadeOut"/> <enumeration value="MoveToLeft"/> <enumeration value="MoveToRight"/> <enumeration value="MoveToTop"/> <enumeration value="MoveToBottom"/> <enumeration value="MoveFromLeft"/> <enumeration value="MoveFromRight"/> <enumeration value="MoveFromTop"/> <enumeration value="MoveFromBottom"/> <enumeration value="ScaleToMin"/> <enumeration value="ScaleFromMin"/> <enumeration value="ScaleToMax"/> <enumeration value="ScaleFromMax"/> <enumeration value="SlidingTopBottomProgressive"/> <enumeration value="TileIn"/> <enumeration value="TileOut"/> <enumeration value="TileIn60k"/> <enumeration value="TileOut60k"/> </restriction> </simpleType>
Enum Constant and Description |
---|
FADE_IN |
FADE_OUT |
MOVE_FROM_BOTTOM |
MOVE_FROM_LEFT |
MOVE_FROM_RIGHT |
MOVE_FROM_TOP |
MOVE_TO_BOTTOM |
MOVE_TO_LEFT |
MOVE_TO_RIGHT |
MOVE_TO_TOP |
NONE |
SCALE_FROM_MAX |
SCALE_FROM_MIN |
SCALE_TO_MAX |
SCALE_TO_MIN |
SLIDING_TOP_BOTTOM_PROGRESSIVE |
TILE_IN |
TILE_IN_60_K |
TILE_OUT |
TILE_OUT_60_K |
Modifier and Type | Method and Description |
---|---|
static AnimationType |
fromValue(String v) |
String |
value() |
static AnimationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnimationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationType NONE
public static final AnimationType FADE_IN
public static final AnimationType FADE_OUT
public static final AnimationType MOVE_TO_LEFT
public static final AnimationType MOVE_TO_RIGHT
public static final AnimationType MOVE_TO_TOP
public static final AnimationType MOVE_TO_BOTTOM
public static final AnimationType MOVE_FROM_LEFT
public static final AnimationType MOVE_FROM_RIGHT
public static final AnimationType MOVE_FROM_TOP
public static final AnimationType MOVE_FROM_BOTTOM
public static final AnimationType SCALE_TO_MIN
public static final AnimationType SCALE_FROM_MIN
public static final AnimationType SCALE_TO_MAX
public static final AnimationType SCALE_FROM_MAX
public static final AnimationType SLIDING_TOP_BOTTOM_PROGRESSIVE
public static final AnimationType TILE_IN
public static final AnimationType TILE_OUT
public static final AnimationType TILE_IN_60_K
public static final AnimationType TILE_OUT_60_K
public static AnimationType[] values()
for (AnimationType c : AnimationType.values()) System.out.println(c);
public static AnimationType 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 nullpublic static AnimationType fromValue(String v)
Copyright © 2011–2016 JRebirth OSS. All rights reserved.