public enum Const extends java.lang.Enum<Const>
| Enum Constant | Description |
|---|---|
CONFIG_FILE_OPTION |
Name of the annotation processing command-line option to take user-specified config files.
|
DEBUG_OPTION |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
getValue() |
|
static Const |
valueOf(java.lang.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
It can take multiple file names separately by 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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
Copyright © 2018 Oracle Corporation. All rights reserved.