public static enum PlatformChannel.ClipboardContentFormat extends Enum<PlatformChannel.ClipboardContentFormat>
| Enum Constant and Description |
|---|
PLAIN_TEXT |
| Modifier and Type | Method and Description |
|---|---|
static PlatformChannel.ClipboardContentFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformChannel.ClipboardContentFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformChannel.ClipboardContentFormat PLAIN_TEXT
public static PlatformChannel.ClipboardContentFormat[] values()
for (PlatformChannel.ClipboardContentFormat c : PlatformChannel.ClipboardContentFormat.values()) System.out.println(c);
public static PlatformChannel.ClipboardContentFormat 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 null