Enum SoRemoteVizClient.ServiceMessageEventArg.States
- java.lang.Object
-
- java.lang.Enum<SoRemoteVizClient.ServiceMessageEventArg.States>
-
- com.openinventor.remoteviz.clients.nodes.SoRemoteVizClient.ServiceMessageEventArg.States
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoRemoteVizClient.ServiceMessageEventArg.States>
- Enclosing class:
- SoRemoteVizClient.ServiceMessageEventArg
public static enum SoRemoteVizClient.ServiceMessageEventArg.States extends java.lang.Enum<SoRemoteVizClient.ServiceMessageEventArg.States> implements IntegerValuedEnum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTED
Connected to the service.DISCONNECTED
Disconnected from the service.FINISH_BANDWIDTH_CALIBRATION
The network bandwidth calibration is finished.FINISH_LATENCY_CALIBRATION
The network latency calibration is finished.FINISH_NETWORK_CALIBRATION
The network calibration is finished.PENDING_NETWORK_CALIBRATION
The network calibration is pending.START_BANDWIDTH_CALIBRATION
The network bandwidth calibration is started.START_LATENCY_CALIBRATION
The network latency calibration is started.START_NETWORK_CALIBRATION
The network calibration is started.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Returns the integer value of the enum constant.static SoRemoteVizClient.ServiceMessageEventArg.States
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoRemoteVizClient.ServiceMessageEventArg.States
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoRemoteVizClient.ServiceMessageEventArg.States[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONNECTED
public static final SoRemoteVizClient.ServiceMessageEventArg.States CONNECTED
Connected to the service.
-
DISCONNECTED
public static final SoRemoteVizClient.ServiceMessageEventArg.States DISCONNECTED
Disconnected from the service.
-
START_NETWORK_CALIBRATION
public static final SoRemoteVizClient.ServiceMessageEventArg.States START_NETWORK_CALIBRATION
The network calibration is started.
-
FINISH_NETWORK_CALIBRATION
public static final SoRemoteVizClient.ServiceMessageEventArg.States FINISH_NETWORK_CALIBRATION
The network calibration is finished.
-
START_BANDWIDTH_CALIBRATION
public static final SoRemoteVizClient.ServiceMessageEventArg.States START_BANDWIDTH_CALIBRATION
The network bandwidth calibration is started.
-
FINISH_BANDWIDTH_CALIBRATION
public static final SoRemoteVizClient.ServiceMessageEventArg.States FINISH_BANDWIDTH_CALIBRATION
The network bandwidth calibration is finished.
-
START_LATENCY_CALIBRATION
public static final SoRemoteVizClient.ServiceMessageEventArg.States START_LATENCY_CALIBRATION
The network latency calibration is started.
-
FINISH_LATENCY_CALIBRATION
public static final SoRemoteVizClient.ServiceMessageEventArg.States FINISH_LATENCY_CALIBRATION
The network latency calibration is finished.
-
PENDING_NETWORK_CALIBRATION
public static final SoRemoteVizClient.ServiceMessageEventArg.States PENDING_NETWORK_CALIBRATION
The network calibration is pending. Another connection is currently performing it.
-
-
Method Detail
-
values
public static SoRemoteVizClient.ServiceMessageEventArg.States[] 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 (SoRemoteVizClient.ServiceMessageEventArg.States c : SoRemoteVizClient.ServiceMessageEventArg.States.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoRemoteVizClient.ServiceMessageEventArg.States valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
valueOf
public static SoRemoteVizClient.ServiceMessageEventArg.States valueOf(int val)
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()
Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-
-