public enum Configuration extends Enum<Configuration>
Enum Constant and Description |
---|
HEARTBEAT_INITIAL_DELAY
Optional property: heartbeat initial delay in seconds
its default value is 0.
|
JAR_NAME
The currently installed extension jar
|
ORIGINAL_JAR_PATH
The absolute path to the originally installed extension jar (before any upgrades)
|
PATH
The PATH.
|
UPGRADE_DELAY
Delay before upgrade kicks in
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
Get the property name.
|
String |
toString()
Get the property name
|
static Configuration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration PATH
public static final Configuration JAR_NAME
public static final Configuration ORIGINAL_JAR_PATH
public static final Configuration UPGRADE_DELAY
public static final Configuration HEARTBEAT_INITIAL_DELAY
public static Configuration[] values()
for (Configuration c : Configuration.values()) System.out.println(c);
public static Configuration 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 getName()
public String toString()
toString
in class Enum<Configuration>
Copyright © 2018. All rights reserved.