public enum DiscoveryStatusEnum extends java.lang.Enum<DiscoveryStatusEnum>
The possible String value of the states are "pending", "active" and "complete".
The are three static instances of the class, one for each element in the enum.
PENDING
indicates that the discovery process has not yet started. Possible next states: ACTIVE
.ACTIVE
indicates that the discovery process has started but is not yet complete. Possible next states: PENDING
, COMPLETE
.COMPLETE
indicates that the discovery process is complete. Possible next states: PENDING
.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.
Modifier and Type | Method and Description |
---|---|
static DiscoveryStatusEnum |
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 DiscoveryStateEnum enum object.
|
static DiscoveryStatusEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DiscoveryStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscoveryStatusEnum PENDING
public static final DiscoveryStatusEnum ACTIVE
public static final DiscoveryStatusEnum COMPLETE
public static DiscoveryStatusEnum[] values()
for (DiscoveryStatusEnum c : DiscoveryStatusEnum.values()) System.out.println(c);
public static DiscoveryStatusEnum 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<DiscoveryStatusEnum>
public static DiscoveryStatusEnum 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-2019 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.