public enum InstanceStateEnum extends java.lang.Enum<InstanceStateEnum>
The possible String value of the States are "RUNNING", "ENDED" and "FAILED".
In releases prior to Apama 3.0, this was a class in the form of the standard type-safe enum pattern, but has been upgraded to a new style Java enum once the Java 5 language features were permitted in our code-base.
Enum Constant and Description |
---|
ENDED_STATE |
FAILED_STATE |
RUNNING_STATE |
Modifier and Type | Method and Description |
---|---|
static InstanceStateEnum |
fromString(java.lang.String stateString)
Get the enumeration value that corresponds to the given string.
|
java.lang.String |
toString()
Retrieve the String representation of the InstanceStateEnum object.
|
static InstanceStateEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstanceStateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstanceStateEnum RUNNING_STATE
public static final InstanceStateEnum ENDED_STATE
public static final InstanceStateEnum FAILED_STATE
public static InstanceStateEnum[] values()
for (InstanceStateEnum c : InstanceStateEnum.values()) System.out.println(c);
public static InstanceStateEnum 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 toString()
toString
in class java.lang.Enum<InstanceStateEnum>
public static InstanceStateEnum fromString(java.lang.String stateString) throws java.lang.IllegalArgumentException
stateString
- A String for which a valid enumeration element is required.java.lang.IllegalArgumentException
- if the parameter does not match a valid enumeration element.Submit a bug or feature
Copyright (c) 2013-2020 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG.