public enum PathType extends Enum<PathType>
| Enum Constant and Description |
|---|
CLASSPATH
Keystore file is located on classpath.
|
PATH
Keystore file is located on absolute or relative path.
|
| Modifier and Type | Method and Description |
|---|---|
static PathType |
forValue(int valueArg) |
int |
getIntValue() |
String |
getName()
Returns the name of the enumeration item as it is specified in the input yang.
|
static PathType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathType CLASSPATH
public static final PathType PATH
public static PathType[] values()
for (PathType c : PathType.values()) System.out.println(c);
public static PathType 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 int getIntValue()
public static PathType forValue(int valueArg)
valueArg - Copyright © 2016 OpenDaylight. All rights reserved.