public enum Type extends Enum<Type>
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type LINEAR
public static final Type EASE_IN_QUAD
public static final Type EASE_OUT_QUAD
public static final Type EASE_IN_OUT_QUAD
public static final Type EASE_IN_CUBIC
public static final Type EASE_OUT_CUBIC
public static final Type EASE_IN_OUT_CUBIC
public static final Type EASE_IN_QUART
public static final Type EASE_OUT_QUART
public static final Type EASE_IN_OUT_QUART
public static final Type EASE_IN_QUINT
public static final Type EASE_OUT_QUINT
public static final Type EASE_IN_OUT_QUINT
public static final Type EASE_IN_SINE
public static final Type EASE_OUT_SINE
public static final Type EASE_IN_OUT_SINE
public static final Type EASE_IN_EXPO
public static final Type EASE_OUT_EXPO
public static final Type EASE_IN_OUT_EXPO
public static final Type EASE_IN_CIRC
public static final Type EASE_OUT_CIRC
public static final Type EASE_IN_OUT_CIRC
public static final Type EASE_IN_ELASTIC
public static final Type EASE_OUT_ELASTIC
public static final Type EASE_IN_OUT_ELASTIC
public static final Type EASE_IN_BACK
public static final Type EASE_OUT_BACK
public static final Type EASE_IN_OUT_BACK
public static final Type EASE_IN_BOUNCE
public static final Type EASE_OUT_BOUNCE
public static final Type EASE_IN_OUT_BOUNCE
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type 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 String getValue()
Copyright © 2012–2020 JBoss by Red Hat. All rights reserved.