org.gcube.informationsystem.glitebridge.resource
Enum StorageElement.ServiceStatusEnum

java.lang.Object
  extended by java.lang.Enum<StorageElement.ServiceStatusEnum>
      extended by org.gcube.informationsystem.glitebridge.resource.StorageElement.ServiceStatusEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StorageElement.ServiceStatusEnum>
Enclosing class:
StorageElement

public static enum StorageElement.ServiceStatusEnum
extends java.lang.Enum<StorageElement.ServiceStatusEnum>

Author:
Luca Frosini (ISTI-CNR)

Enum Constant Summary
afs
          afs
dcap
          dcap
gsidcap
          gsidcap
gsiftp
          gsiftp
gsirfio
          gsirfio
https
          https
nfs
          nfs
other
          other
rfio
          rfio
root
          root
 
Method Summary
static StorageElement.ServiceStatusEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StorageElement.ServiceStatusEnum[] 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
 

Enum Constant Detail

gsiftp

public static final StorageElement.ServiceStatusEnum gsiftp
gsiftp


nfs

public static final StorageElement.ServiceStatusEnum nfs
nfs


afs

public static final StorageElement.ServiceStatusEnum afs
afs


rfio

public static final StorageElement.ServiceStatusEnum rfio
rfio


gsirfio

public static final StorageElement.ServiceStatusEnum gsirfio
gsirfio


dcap

public static final StorageElement.ServiceStatusEnum dcap
dcap


gsidcap

public static final StorageElement.ServiceStatusEnum gsidcap
gsidcap


root

public static final StorageElement.ServiceStatusEnum root
root


https

public static final StorageElement.ServiceStatusEnum https
https


other

public static final StorageElement.ServiceStatusEnum other
other

Method Detail

values

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

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

valueOf

public static StorageElement.ServiceStatusEnum 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