public enum Mode extends Enum<Mode>
Enum Constant and Description |
---|
IN
The identity function
|
IN_OUT
copies and mirrors the easing function from [0,.5] and [.5,1].
|
OUT
reverses the easing direction [1,0]
|
OUT_IN
copies and mirrors the easing function from [1,.5] and [.5,0].
|
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mode IN
public static final Mode OUT
public static final Mode IN_OUT
public static final Mode OUT_IN
public static Mode[] values()
for (Mode c : Mode.values()) System.out.println(c);
public static Mode 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 © 2015 gwt-d3. All rights reserved.