public enum Const extends Enum<Const>
| Enum Constant and Description |
|---|
CONFIG_FILE_OPTION
Name of the annotation processing command-line option to take user-specified config files.
|
DEBUG_OPTION |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static Const |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Const[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Const CONFIG_FILE_OPTION
File.pathSeparator.public static final Const DEBUG_OPTION
public static Const[] values()
for (Const c : Const.values()) System.out.println(c);
public static Const 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 String getValue()
Copyright © 2017 JBoss by Red Hat. All rights reserved.