public enum HelpContent extends Enum<HelpContent>
Enum Constant and Description |
---|
BOTH
Both: Show both attribute and metadata descriptions as help content
|
DESCRIPTION
Attribute Description: Show attribute description as help content
|
METADATA
Metadata Description: Show metadata description as help content
|
NONE
None: No help content
|
Modifier and Type | Method and Description |
---|---|
static HelpContent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HelpContent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HelpContent BOTH
public static final HelpContent DESCRIPTION
public static final HelpContent METADATA
public static final HelpContent NONE
public static HelpContent[] values()
for (HelpContent c : HelpContent.values()) System.out.println(c);
public static HelpContent 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 © 2016. All Rights Reserved.