public enum KeywordSetKey extends Enum<KeywordSetKey>
Enum Constant and Description |
---|
ALL |
BASE_SPECIFIER |
DECL_SPECIFIER_SEQUENCE |
DECLARATION |
EMPTY |
EXPRESSION |
FUNCTION_MODIFIER |
KEYWORDS |
MACRO |
MEMBER |
NAMESPACE_ONLY |
POST_USING |
PP_DIRECTIVE |
STATEMENT |
TYPES |
Modifier and Type | Method and Description |
---|---|
static KeywordSetKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeywordSetKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeywordSetKey EMPTY
public static final KeywordSetKey DECL_SPECIFIER_SEQUENCE
public static final KeywordSetKey DECLARATION
public static final KeywordSetKey STATEMENT
public static final KeywordSetKey BASE_SPECIFIER
public static final KeywordSetKey POST_USING
public static final KeywordSetKey FUNCTION_MODIFIER
public static final KeywordSetKey NAMESPACE_ONLY
public static final KeywordSetKey MACRO
public static final KeywordSetKey PP_DIRECTIVE
public static final KeywordSetKey EXPRESSION
public static final KeywordSetKey MEMBER
public static final KeywordSetKey ALL
public static final KeywordSetKey KEYWORDS
public static final KeywordSetKey TYPES
public static KeywordSetKey[] values()
for (KeywordSetKey c : KeywordSetKey.values()) System.out.println(c);
public static KeywordSetKey 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 (c) IBM Corp. and others 2004, 2020. All Rights Reserved.