public enum TransportState extends Enum<TransportState>
| Enum Constant and Description |
|---|
APPLYING_CONFIGURATION |
NOT_READY |
PUBLISHED_PROPERTIES |
PUBLISHING_PROPERTIES |
READY |
REGISTERED |
REGISTERING |
UNDEPLOYED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TransportState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransportState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransportState NOT_READY
public static final TransportState REGISTERING
public static final TransportState REGISTERED
public static final TransportState PUBLISHING_PROPERTIES
public static final TransportState PUBLISHED_PROPERTIES
public static final TransportState APPLYING_CONFIGURATION
public static final TransportState READY
public static final TransportState UNDEPLOYED
public static TransportState[] values()
for (TransportState c : TransportState.values()) System.out.println(c);
public static TransportState 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 toString()
toString in class Enum<TransportState>Copyright © 2025. All rights reserved.