public enum DefaultState extends Enum<DefaultState>
Represents the default state of a PDF layer.
| Enum Constant and Description |
|---|
Hidden
The default state is hidden.
|
Visible
The default state is visible.
|
| Modifier and Type | Method and Description |
|---|---|
static DefaultState |
getByValue(int value) |
int |
getValue() |
static DefaultState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultState Visible
The default state is visible.
public static final DefaultState Hidden
The default state is hidden.
public static DefaultState[] values()
for (DefaultState c : DefaultState.values()) System.out.println(c);
public static DefaultState 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 int getValue()
public static DefaultState getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.