public static enum XTermClipboard.UseSystemClipboard extends Enum<XTermClipboard.UseSystemClipboard>
| Enum Constant and Description |
|---|
FALSE
Copy and paste from the internal buffer
|
READWRITE
Copy and paste from the system clipboard
|
WRITE
Copy to system clipboard, paste from internal buffer
|
| Modifier and Type | Method and Description |
|---|---|
static XTermClipboard.UseSystemClipboard |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XTermClipboard.UseSystemClipboard[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XTermClipboard.UseSystemClipboard FALSE
public static final XTermClipboard.UseSystemClipboard WRITE
public static final XTermClipboard.UseSystemClipboard READWRITE
public static XTermClipboard.UseSystemClipboard[] values()
for (XTermClipboard.UseSystemClipboard c : XTermClipboard.UseSystemClipboard.values()) System.out.println(c);
public static XTermClipboard.UseSystemClipboard 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 © 2020 Flowing Code. All rights reserved.