public enum ResizeType extends Enum<ResizeType> implements Style
TextArea| Enum Constant and Description |
|---|
BOTH |
HORIZONTAL |
INHERIT |
NONE |
VERTICAL |
| Modifier and Type | Method and Description |
|---|---|
String |
get()
Gets the CSS class name (or a part thereof) associated with this
constant.
|
static ResizeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResizeType NONE
public static final ResizeType BOTH
public static final ResizeType HORIZONTAL
public static final ResizeType VERTICAL
public static final ResizeType INHERIT
public static ResizeType[] values()
for (ResizeType c : ResizeType.values()) System.out.println(c);
public static ResizeType 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. All rights reserved.