public static enum RippleView.RippleType extends java.lang.Enum<RippleView.RippleType>
| Enum Constant and Description |
|---|
DOUBLE
双波纹
|
RECTANGLE
方形波纹
|
SIMPLE
单波纹
|
| Modifier and Type | Method and Description |
|---|---|
static RippleView.RippleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RippleView.RippleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RippleView.RippleType SIMPLE
public static final RippleView.RippleType DOUBLE
public static final RippleView.RippleType RECTANGLE
public static RippleView.RippleType[] values()
for (RippleView.RippleType c : RippleView.RippleType.values()) System.out.println(c);
public static RippleView.RippleType 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