com.lts.ipc.semaphore
Enum SemaphoreResult.Results

java.lang.Object
  extended by java.lang.Enum<SemaphoreResult.Results>
      extended by com.lts.ipc.semaphore.SemaphoreResult.Results
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SemaphoreResult.Results>
Enclosing class:
SemaphoreResult

public static enum SemaphoreResult.Results
extends java.lang.Enum<SemaphoreResult.Results>


Enum Constant Summary
DoesNotExist
           
InsufficientPermissions
           
Success
           
Timeout
           
UnknownError
           
UnknownHandle
           
 
Field Summary
 int code
           
 java.lang.String message
           
 
Method Summary
static int foo()
           
static SemaphoreResult.Results toResult(int code)
           
static SemaphoreResult.Results valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SemaphoreResult.Results[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Success

public static final SemaphoreResult.Results Success

InsufficientPermissions

public static final SemaphoreResult.Results InsufficientPermissions

DoesNotExist

public static final SemaphoreResult.Results DoesNotExist

UnknownError

public static final SemaphoreResult.Results UnknownError

Timeout

public static final SemaphoreResult.Results Timeout

UnknownHandle

public static final SemaphoreResult.Results UnknownHandle
Field Detail

message

public java.lang.String message

code

public int code
Method Detail

values

public static SemaphoreResult.Results[] 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 (SemaphoreResult.Results c : SemaphoreResult.Results.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SemaphoreResult.Results 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

toResult

public static SemaphoreResult.Results toResult(int code)

foo

public static int foo()