edu.wis.jtlv.env.module
Enum SMVModule.SyncStatus
java.lang.Object
java.lang.Enum<SMVModule.SyncStatus>
edu.wis.jtlv.env.module.SMVModule.SyncStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<SMVModule.SyncStatus>
- Enclosing class:
- SMVModule
public static enum SMVModule.SyncStatus
- extends java.lang.Enum<SMVModule.SyncStatus>
Enum class to distinguish between synchronous and asynchronous sub module
composition.
- Version:
- "1.3.2"
- Author:
- yaniv sa'ar.
- See Also:
SMVModule.getAllInstances(edu.wis.jtlv.env.module.SMVModule.SyncStatus)
Method Summary |
static SMVModule.SyncStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SMVModule.SyncStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
SYNC
public static final SMVModule.SyncStatus SYNC
ASYNC
public static final SMVModule.SyncStatus ASYNC
UNDEF
public static final SMVModule.SyncStatus UNDEF
values
public static SMVModule.SyncStatus[] 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 (SMVModule.SyncStatus c : SMVModule.SyncStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SMVModule.SyncStatus 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 name
java.lang.NullPointerException
- if the argument is null