public enum TerminalCursor extends Enum<TerminalCursor>
Enum Constant and Description |
---|
BLINCKING_BLOCK |
BLINCKING_LINE |
BLOCK |
LINE |
NONE |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
isBlincking() |
static TerminalCursor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TerminalCursor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminalCursor NONE
public static final TerminalCursor BLOCK
public static final TerminalCursor LINE
public static final TerminalCursor BLINCKING_BLOCK
public static final TerminalCursor BLINCKING_LINE
public static TerminalCursor[] values()
for (TerminalCursor c : TerminalCursor.values()) System.out.println(c);
public static TerminalCursor 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 abstract boolean isBlincking()
Copyright © 2018 Xalys. All rights reserved.