Package FlaNium.WinAPI.property
Enum PropertyList.App
- java.lang.Object
-
- java.lang.Enum<PropertyList.App>
-
- FlaNium.WinAPI.property.PropertyList.App
-
- All Implemented Interfaces:
Serializable,Comparable<PropertyList.App>
- Enclosing class:
- PropertyList
public static enum PropertyList.App extends Enum<PropertyList.App>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_ARGSAPP_PATHAPP_RESPONSE_TIMEOUTCONNECT_TO_RUNNING_APPINJECTION_ACTIVATEINJECTION_DLL_TYPELAUNCH_DELAYPROCESS_FIND_TIMEOUTPROCESS_NAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleancontainsValue(String value)StringgetValue()static PropertyList.AppvalueOf(String name)Returns the enum constant of this type with the specified name.static PropertyList.App[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APP_PATH
public static final PropertyList.App APP_PATH
-
APP_ARGS
public static final PropertyList.App APP_ARGS
-
CONNECT_TO_RUNNING_APP
public static final PropertyList.App CONNECT_TO_RUNNING_APP
-
LAUNCH_DELAY
public static final PropertyList.App LAUNCH_DELAY
-
PROCESS_FIND_TIMEOUT
public static final PropertyList.App PROCESS_FIND_TIMEOUT
-
PROCESS_NAME
public static final PropertyList.App PROCESS_NAME
-
INJECTION_ACTIVATE
public static final PropertyList.App INJECTION_ACTIVATE
-
INJECTION_DLL_TYPE
public static final PropertyList.App INJECTION_DLL_TYPE
-
APP_RESPONSE_TIMEOUT
public static final PropertyList.App APP_RESPONSE_TIMEOUT
-
-
Method Detail
-
values
public static PropertyList.App[] 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.App c : PropertyList.App.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.App 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)
-
-