public enum ServerType extends Enum<ServerType>
Enum Constant and Description |
---|
GARBAGE_COLLECTOR |
MASTER |
MONITOR |
TABLET_SERVER |
TRACER |
ZOOKEEPER |
Modifier and Type | Method and Description |
---|---|
String |
prettyPrint() |
static ServerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerType MASTER
public static final ServerType ZOOKEEPER
public static final ServerType TABLET_SERVER
public static final ServerType GARBAGE_COLLECTOR
public static final ServerType TRACER
public static final ServerType MONITOR
public static ServerType[] values()
for (ServerType c : ServerType.values()) System.out.println(c);
public static ServerType 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 prettyPrint()
Copyright © 2011–2018 The Apache Software Foundation. All rights reserved.