public enum DisplayType extends Enum<DisplayType>
| 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<DisplayType> |
DISPLAY_TYPES_OPTIONS
The Set containing all display types options which are available.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
getAllDisplayTypesOptionsFullUsageDescriptions()
Prints the all display types 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<DisplayType> displayTypesOptions)
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 DisplayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayType ABSTRACT_CLASSES
public static final DisplayType ANNOTATIONS
public static final DisplayType CLASSES
public static final DisplayType ENUMS
public static final DisplayType EXTENSIONS
public static final DisplayType IMPLEMENTATIONS
public static final DisplayType IMPORTS
public static final DisplayType INTERFACES
public static final DisplayType NATIVE_METHODS
public static final DisplayType STATIC_IMPORTS
public static final Set<DisplayType> DISPLAY_TYPES_OPTIONS
public static DisplayType[] values()
for (DisplayType c : DisplayType.values()) System.out.println(c);
public static DisplayType 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 getAllDisplayTypesOptionsFullUsageDescriptions()
public static String getFullUsageDescriptions(Set<DisplayType> displayTypesOptions)
displayTypesOptions - the Set of all display types options to get the full usage description from.public String getFullUsageDescription()
public String getUsageDescription()
public String toString()
toString in class Enum<DisplayType>Copyright © 2014 Sourceforge. All rights reserved.