public enum Display extends Enum<Display>
| Enum Constant and Description |
|---|
ABSTRACT_CLASSES
The display abstract classes argument.
|
ANNOTATIONS
The display annotations argument.
|
CLASSES
The display classes argument.
|
ENUMS
The display enumerations argument.
|
EXTENSIONS
The display extensions argument.
|
IMPLEMENTATIONS
The display implementations argument.
|
IMPORTS
The display imports argument.
|
INTERFACES
The display interfaces argument.
|
NATIVE_METHODS
The display native methods argument.
|
STATIC_IMPORTS
The display static imports argument.
|
| Modifier and Type | Field and Description |
|---|---|
static Set<Display> |
DISPLAY_OPTIONS
The Set containing all displays options which are available.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
getAllDisplayOptionsFullUsageDescriptions()
Prints the all display options as a comma separated String of their full descriptions.
|
String |
getFullUsageDescription()
Gets the string containing the full display usage description.
|
static String |
getFullUsageDescriptions(Set<Display> displayOptions)
Build the string which contains the usage descriptions of all displays options which are
available.
|
String |
getUsageDescription()
Gets the string containing the display usage description.
|
String |
toString() |
static Display |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Display[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Display ABSTRACT_CLASSES
public static final Display ANNOTATIONS
public static final Display CLASSES
public static final Display ENUMS
public static final Display EXTENSIONS
public static final Display IMPLEMENTATIONS
public static final Display IMPORTS
public static final Display INTERFACES
public static final Display NATIVE_METHODS
public static final Display STATIC_IMPORTS
public static Display[] values()
for (Display c : Display.values()) System.out.println(c);
public static Display 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 static String getAllDisplayOptionsFullUsageDescriptions()
public static String getFullUsageDescriptions(Set<Display> displayOptions)
displayOptions - the Set of all displays options to get the full usage description from.public String getFullUsageDescription()
public String getUsageDescription()
Copyright © 2014 Sourceforge. All rights reserved.