Package org.apache.geode.distributed
Enum Class ServerLauncher.Command
- All Implemented Interfaces:
Serializable,Comparable<ServerLauncher.Command>,Constable
- Enclosing class:
- ServerLauncher
An enumerated type representing valid commands to the Server launcher.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiongetName()Gets the name of the Server launcher command.Gets a set of valid options that can be used with the Server launcher command when used from the command-line.booleanDetermines whether this Server launcher command has the specified command-line option.static booleanDetermines whether the specified name refers to a valid Server launcher command, as defined by this enumerated type.booleanConvenience method for determining whether this is the UNSPECIFIED Server launcher command.static booleanisUnspecified(ServerLauncher.Command command) Determines whether the given Server launcher command has been properly specified.toString()Gets the String representation of this Server launcher command.static ServerLauncher.CommandReturns the enum constant of this class with the specified name.static ServerLauncher.CommandvalueOfName(String name) Looks up a Server launcher command by name.static ServerLauncher.Command[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
START
-
STATUS
-
STOP
-
UNSPECIFIED
-
VERSION
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
isCommand
Determines whether the specified name refers to a valid Server launcher command, as defined by this enumerated type.- Parameters:
name- a String value indicating the potential name of a Server launcher command.- Returns:
- a boolean indicating whether the specified name for a Server launcher command is valid.
-
isUnspecified
Determines whether the given Server launcher command has been properly specified. The command is deemed unspecified if the reference is null or the Command is UNSPECIFIED.- Parameters:
command- the Server launcher command.- Returns:
- a boolean value indicating whether the Server launcher command is unspecified.
- See Also:
-
valueOfName
Looks up a Server launcher command by name. The equality comparison on name is case-insensitive.- Parameters:
name- a String value indicating the name of the Server launcher command.- Returns:
- an enumerated type representing the command name or null if the no such command with the specified name exists.
-
getName
Gets the name of the Server launcher command.- Returns:
- a String value indicating the name of the Server launcher command.
-
getOptions
Gets a set of valid options that can be used with the Server launcher command when used from the command-line.- Returns:
- a Set of Strings indicating the names of the options available to the Server launcher command.
-
hasOption
Determines whether this Server launcher command has the specified command-line option.- Parameters:
option- a String indicating the name of the command-line option to this command.- Returns:
- a boolean value indicating whether this command has the specified named command-line option.
-
isUnspecified
public boolean isUnspecified()Convenience method for determining whether this is the UNSPECIFIED Server launcher command.- Returns:
- a boolean indicating if this command is UNSPECIFIED.
- See Also:
-
toString
Gets the String representation of this Server launcher command.- Overrides:
toStringin classEnum<ServerLauncher.Command>- Returns:
- a String value representing this Server launcher command.
-