Package FlaNium.WinAPI.property
Enum PropertyList.Driver
- java.lang.Object
-
- java.lang.Enum<PropertyList.Driver>
-
- FlaNium.WinAPI.property.PropertyList.Driver
-
- All Implemented Interfaces:
Serializable,Comparable<PropertyList.Driver>
- Enclosing class:
- PropertyList
public static enum PropertyList.Driver extends Enum<PropertyList.Driver>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRIVER_EXEDRIVER_LOG_FILEDRIVER_PORTDRIVER_REMOTEDRIVER_REMOTE_URLDRIVER_SILENTDRIVER_TIMEOUTDRIVER_VERBOSE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleancontainsValue(String value)StringgetValue()static PropertyList.DrivervalueOf(String name)Returns the enum constant of this type with the specified name.static PropertyList.Driver[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRIVER_REMOTE
public static final PropertyList.Driver DRIVER_REMOTE
-
DRIVER_REMOTE_URL
public static final PropertyList.Driver DRIVER_REMOTE_URL
-
DRIVER_EXE
public static final PropertyList.Driver DRIVER_EXE
-
DRIVER_PORT
public static final PropertyList.Driver DRIVER_PORT
-
DRIVER_VERBOSE
public static final PropertyList.Driver DRIVER_VERBOSE
-
DRIVER_SILENT
public static final PropertyList.Driver DRIVER_SILENT
-
DRIVER_TIMEOUT
public static final PropertyList.Driver DRIVER_TIMEOUT
-
DRIVER_LOG_FILE
public static final PropertyList.Driver DRIVER_LOG_FILE
-
-
Method Detail
-
values
public static PropertyList.Driver[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PropertyList.Driver c : PropertyList.Driver.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyList.Driver valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
containsValue
public static boolean containsValue(String value)
-
-