public enum ClientProperties extends java.lang.Enum<ClientProperties> implements PropertyHolder
PropertyHolder with `client name and version` attribute names:
1) internal - from the environment (OS, JVM)
2) external - from `*.properties` file| Enum Constant and Description |
|---|
CLIENT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
java.lang.String[] |
getPropertyKeys() |
boolean |
isInternal() |
static ClientProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientProperties CLIENT
public static ClientProperties[] values()
for (ClientProperties c : ClientProperties.values()) System.out.println(c);
public static ClientProperties 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 getName()
getName in interface PropertyHolderpublic java.lang.String[] getPropertyKeys()
getPropertyKeys in interface PropertyHolderpublic boolean isInternal()
isInternal in interface PropertyHolder