public enum VisibilityState extends Enum<VisibilityState>
Enum Constant and Description |
---|
HIDDEN
Indicates the book window is hidden, but can be shown by the user via the user interface.
|
VERY_HIDDEN
Indicates the sheet is hidden and cannot be shown in the user interface (UI).
|
VISIBLE
Indicates the sheet is visible.
|
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static VisibilityState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisibilityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisibilityState HIDDEN
public static final VisibilityState VERY_HIDDEN
public static final VisibilityState VISIBLE
public static VisibilityState[] values()
for (VisibilityState c : VisibilityState.values()) System.out.println(c);
public static VisibilityState 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 getName()
Copyright © 2019. All rights reserved.