public enum NetworkService extends java.lang.Enum<NetworkService>
Unfortunately this is a hard-coded class so is unconfigurable and inflexible. It probably needs to evolve into a registry-based system at some point.
Copyright 2008 Partner Software, Inc.
| Enum Constant and Description |
|---|
BARSOOM |
CLIENT_JETTY |
CLIENT_MYSQL |
GUPPY |
HOLLER |
HUB_JETTY |
HUB_MYSQL |
HUB_SOAP_SERVICE |
MAP_CONTROL_CSV |
MAP_SERVER |
MAPAPP_WEB_SERVICE |
MOBILE_SYNC |
PARTNER_WEB |
STAKER_JOB_LIBRARY |
YONDER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDescription() |
java.lang.String |
getName() |
int |
getPortNumber() |
java.lang.String |
getProtocol() |
java.lang.String |
getType() |
java.lang.String |
toString() |
static NetworkService |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NetworkService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkService PARTNER_WEB
public static final NetworkService STAKER_JOB_LIBRARY
public static final NetworkService GUPPY
public static final NetworkService BARSOOM
public static final NetworkService MAP_CONTROL_CSV
public static final NetworkService YONDER
public static final NetworkService HUB_SOAP_SERVICE
public static final NetworkService MAPAPP_WEB_SERVICE
public static final NetworkService MAP_SERVER
public static final NetworkService HOLLER
public static final NetworkService HUB_JETTY
public static final NetworkService CLIENT_JETTY
public static final NetworkService HUB_MYSQL
public static final NetworkService CLIENT_MYSQL
public static final NetworkService MOBILE_SYNC
public static NetworkService[] values()
for (NetworkService c : NetworkService.values()) System.out.println(c);
public static NetworkService 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<NetworkService>public java.lang.String getName()
public java.lang.String getDescription()
public java.lang.String getType()
public int getPortNumber()
public java.lang.String getProtocol()