public enum ModelConnectionStatus extends Enum<ModelConnectionStatus>
Enum Constant and Description |
---|
CONNECTED
Connection to Java Core Server established.
|
DISCONNECTED
Not connected to Java Core Server.
|
Modifier and Type | Method and Description |
---|---|
static ModelConnectionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelConnectionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelConnectionStatus CONNECTED
public static final ModelConnectionStatus DISCONNECTED
public static ModelConnectionStatus[] values()
for (ModelConnectionStatus c : ModelConnectionStatus.values()) System.out.println(c);
public static ModelConnectionStatus 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 nullCopyright © 2021 Hyland Software Germany GmbH. All rights reserved.