public enum HotkeyPrefix extends Enum<HotkeyPrefix>
Specifies the type of display for hot-key prefixes that relate to text.
| Enum Constant and Description |
|---|
Hide
Do not display the hot-key prefix.
|
None
No hot-key prefix.
|
Show
Display the hot-key prefix.
|
| Modifier and Type | Method and Description |
|---|---|
static HotkeyPrefix |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HotkeyPrefix[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HotkeyPrefix None
No hot-key prefix.
public static final HotkeyPrefix Show
Display the hot-key prefix.
public static final HotkeyPrefix Hide
Do not display the hot-key prefix.
public static HotkeyPrefix[] values()
for (HotkeyPrefix c : HotkeyPrefix.values()) System.out.println(c);
public static HotkeyPrefix 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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.