elisa_client.model
Enum SystemAffected

java.lang.Object
  extended by java.lang.Enum<SystemAffected>
      extended by elisa_client.model.SystemAffected
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SystemAffected>

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

System Affected enum

Author:

Enum Constant Summary
ALFA_RPO
           
BCM
           
BEAM_CONDITIONS
           
COUNTING_ROOM
           
CRYO
           
CSC
           
DAQ
           
DATAQUALITY
           
DCS
           
DSS
           
EVENT_DISPLAYS
           
GAS
           
HLT
           
IDGEN_IC
           
LARG
           
LUCID
           
LVL1
           
MAGNETS
           
MDT
           
MONITORING
           
NETWORK
           
ONLINEDB
           
OTHER
           
PIXEL
           
RADIOPROTECT
           
RPC
           
RUNCOORD
           
SAFETY
           
SCT
           
SYSADMINS
           
TECH_INFRA
           
TGC
           
TIER0
           
TILE
           
TRT
           
ZDC
           
 
Method Summary
 java.lang.String toString()
           
static SystemAffected valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SystemAffected[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALFA_RPO

public static final SystemAffected ALFA_RPO

BCM

public static final SystemAffected BCM

BEAM_CONDITIONS

public static final SystemAffected BEAM_CONDITIONS

CSC

public static final SystemAffected CSC

COUNTING_ROOM

public static final SystemAffected COUNTING_ROOM

CRYO

public static final SystemAffected CRYO

DAQ

public static final SystemAffected DAQ

DCS

public static final SystemAffected DCS

DSS

public static final SystemAffected DSS

DATAQUALITY

public static final SystemAffected DATAQUALITY

EVENT_DISPLAYS

public static final SystemAffected EVENT_DISPLAYS

GAS

public static final SystemAffected GAS

HLT

public static final SystemAffected HLT

IDGEN_IC

public static final SystemAffected IDGEN_IC

LARG

public static final SystemAffected LARG

LVL1

public static final SystemAffected LVL1

LUCID

public static final SystemAffected LUCID

MDT

public static final SystemAffected MDT

MAGNETS

public static final SystemAffected MAGNETS

MONITORING

public static final SystemAffected MONITORING

NETWORK

public static final SystemAffected NETWORK

ONLINEDB

public static final SystemAffected ONLINEDB

OTHER

public static final SystemAffected OTHER

PIXEL

public static final SystemAffected PIXEL

RPC

public static final SystemAffected RPC

RADIOPROTECT

public static final SystemAffected RADIOPROTECT

RUNCOORD

public static final SystemAffected RUNCOORD

SCT

public static final SystemAffected SCT

SAFETY

public static final SystemAffected SAFETY

SYSADMINS

public static final SystemAffected SYSADMINS

TGC

public static final SystemAffected TGC

TRT

public static final SystemAffected TRT

TECH_INFRA

public static final SystemAffected TECH_INFRA

TIER0

public static final SystemAffected TIER0

TILE

public static final SystemAffected TILE

ZDC

public static final SystemAffected ZDC
Method Detail

values

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

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

valueOf

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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<SystemAffected>