org.siprop.v2.core.repository
Enum RepositoryKey

java.lang.Object
  extended by java.lang.Enum<RepositoryKey>
      extended by org.siprop.v2.core.repository.RepositoryKey
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RepositoryKey>

public enum RepositoryKey
extends java.lang.Enum<RepositoryKey>

Repository Type.

Author:
noritsuna

Enum Constant Summary
B2BUA
           
INNER
           
OUTER
           
STACK
           
TRANSPORT
           
UA
           
 
Method Summary
static RepositoryKey valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RepositoryKey[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

TRANSPORT

public static final RepositoryKey TRANSPORT

STACK

public static final RepositoryKey STACK

UA

public static final RepositoryKey UA

B2BUA

public static final RepositoryKey B2BUA

OUTER

public static final RepositoryKey OUTER

INNER

public static final RepositoryKey INNER
Method Detail

values

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

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

valueOf

public static RepositoryKey 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