public static enum Visibility.Type extends java.lang.Enum<Visibility.Type>
Enum Constant and Description |
---|
collapse
When used in table elements, this value removes a row or column, but
it does not affect the table layout.
|
hidden
The element is invisible
|
visible
The element is visible
|
Modifier and Type | Method and Description |
---|---|
static Visibility.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Visibility.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Visibility.Type visible
public static final Visibility.Type hidden
public static final Visibility.Type collapse
public static Visibility.Type[] values()
for (Visibility.Type c : Visibility.Type.values()) System.out.println(c);
public static Visibility.Type 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