logdog.Common
Enum ServiceType

java.lang.Object
  extended by java.lang.Enum<ServiceType>
      extended by logdog.Common.ServiceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ServiceType>

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

이 시스템에서 제공하는 서비스의 종류를 나타내는 enum이다. 현재는 GAE만 지원한다.

Since:
2012. 11. 15.오전 6:09:26 TODO
Author:
Karuana

Enum Constant Summary
GOOGLE_APP_ENGINE
           
NON
           
 
Method Summary
static ServiceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ServiceType[] 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

GOOGLE_APP_ENGINE

public static final ServiceType GOOGLE_APP_ENGINE

NON

public static final ServiceType NON
Method Detail

values

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

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

valueOf

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