Serializable
, Comparable<Widgets.TailTipWidgets.TipType>
public static enum Widgets.TailTipWidgets.TipType extends Enum<Widgets.TailTipWidgets.TipType>
Enum Constant | Description |
---|---|
COMBINED |
Prepare command line suggestions using either a command positional argument descriptions if exists
or command completers data.
|
COMPLETER |
Prepare command line suggestions using a command completer data.
|
TAIL_TIP |
Prepare command line suggestions using a command positional argument descriptions.
|
Modifier and Type | Method | Description |
---|---|---|
static Widgets.TailTipWidgets.TipType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Widgets.TailTipWidgets.TipType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Widgets.TailTipWidgets.TipType TAIL_TIP
public static final Widgets.TailTipWidgets.TipType COMPLETER
public static final Widgets.TailTipWidgets.TipType COMBINED
public static Widgets.TailTipWidgets.TipType[] values()
for (Widgets.TailTipWidgets.TipType c : Widgets.TailTipWidgets.TipType.values()) System.out.println(c);
public static Widgets.TailTipWidgets.TipType 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.