public enum RunAtLocation extends Enum<RunAtLocation>
Java class for RunAtLocation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RunAtLocation"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="fgsmsServer"/> <enumeration value="fgsmsAgent"/> </restriction> </simpleType>
Enum Constant and Description |
---|
FGSMS_AGENT
Runs at the location of the fgsms agent
|
FGSMS_SERVER
Runs at the fgsms server from the context of the SLA Processor
|
Modifier and Type | Method and Description |
---|---|
static RunAtLocation |
fromValue(String v) |
String |
value() |
static RunAtLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunAtLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunAtLocation FGSMS_SERVER
public static final RunAtLocation FGSMS_AGENT
public static RunAtLocation[] values()
for (RunAtLocation c : RunAtLocation.values()) System.out.println(c);
public static RunAtLocation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static RunAtLocation fromValue(String v)
Copyright © 2008–2017 MIL-OSS. All rights reserved.