public static enum CmdLine.DescriptionType extends Enum<CmdLine.DescriptionType>
| Enum Constant and Description |
|---|
COMMAND
Cursor is at the end of line.
|
METHOD
The part of the line from beginning till cursor has unclosed opening parenthesis.
|
SYNTAX
The part of the line from beginning till cursor ends to the closing parenthesis.
|
| Modifier and Type | Method and Description |
|---|---|
static CmdLine.DescriptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CmdLine.DescriptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmdLine.DescriptionType COMMAND
public static final CmdLine.DescriptionType METHOD
public static final CmdLine.DescriptionType SYNTAX
public static CmdLine.DescriptionType[] values()
for (CmdLine.DescriptionType c : CmdLine.DescriptionType.values()) System.out.println(c);
public static CmdLine.DescriptionType 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. All rights reserved.