public enum TabVisibility extends Enum<TabVisibility>
Java class for TabVisibility.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TabVisibility">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Hidden"/>
<enumeration value="DefaultOff"/>
<enumeration value="DefaultOn"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEFAULT_OFF |
DEFAULT_ON |
HIDDEN |
| Modifier and Type | Method and Description |
|---|---|
static TabVisibility |
fromValue(String v) |
String |
value() |
static TabVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TabVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabVisibility HIDDEN
public static final TabVisibility DEFAULT_OFF
public static final TabVisibility DEFAULT_ON
public static TabVisibility[] values()
for (TabVisibility c : TabVisibility.values()) System.out.println(c);
public static TabVisibility 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 value()
public static TabVisibility fromValue(String v)
Copyright © 2016. All rights reserved.