public enum Ripple extends Enum<Ripple>
Enum Constant and Description |
---|
HAS_RIPPLE
Apply a ripple for the target component.
|
NONE
No ripple for the target component.
|
Modifier and Type | Method and Description |
---|---|
static Ripple |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ripple[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ripple NONE
public static final Ripple HAS_RIPPLE
public static Ripple[] values()
for (Ripple c : Ripple.values()) System.out.println(c);
public static Ripple 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 © 2016 com.github.ilyes4j. All rights reserved.