net.refractions.udig.catalog
Enum IResolve.Status

java.lang.Object
  extended by java.lang.Enum<IResolve.Status>
      extended by net.refractions.udig.catalog.IResolve.Status
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IResolve.Status>
Enclosing interface:
IResolve

public static enum IResolve.Status
extends java.lang.Enum<IResolve.Status>


Enum Constant Summary
BROKEN
          Status constant indicates a connection that is broken
CONNECTED
          Status constant indicates a live connection in use
NOTCONNECTED
          Status constant indicates a connection that is not in use
RESTRICTED_ACCESS
          Indicates that user does not have access to resource
 
Method Summary
static IResolve.Status valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IResolve.Status[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONNECTED

public static final IResolve.Status CONNECTED
Status constant indicates a live connection in use


NOTCONNECTED

public static final IResolve.Status NOTCONNECTED
Status constant indicates a connection that is not in use


BROKEN

public static final IResolve.Status BROKEN
Status constant indicates a connection that is broken


RESTRICTED_ACCESS

public static final IResolve.Status RESTRICTED_ACCESS
Indicates that user does not have access to resource

Method Detail

values

public static final IResolve.Status[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(IResolve.Status c : IResolve.Status.values())
        System.out.println(c);

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

valueOf

public static IResolve.Status 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