public enum EServer extends java.lang.Enum<EServer>
Enumeration | Description |
---|---|
CDI | CDI hardware server. |
TINE | A normal TINE middle layer server. |
EVENTARCHIVE | Event archive server (this is currently not used). |
Enum Constant and Description |
---|
CDI
The CDI server.
|
EVENTARCHIVE
The event server.
|
TINE
The device server.
|
Modifier and Type | Method and Description |
---|---|
static EServer |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EServer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EServer CDI
public static final EServer TINE
public static final EServer EVENTARCHIVE
public static EServer[] values()
for (EServer c : EServer.values()) System.out.println(c);
public static EServer valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null14-September-2016 18:23 Deutsches Elektronen-Synchrotron DESY in der Helmholtz-Gemeinschaft