Package berlin.yuna.natsserver.config
Enum NatsStreamingSourceConfig
- java.lang.Object
-
- java.lang.Enum<NatsStreamingSourceConfig>
-
- berlin.yuna.natsserver.config.NatsStreamingSourceConfig
-
- All Implemented Interfaces:
Serializable,Comparable<NatsStreamingSourceConfig>
public enum NatsStreamingSourceConfig extends Enum<NatsStreamingSourceConfig>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDefaultValue()StringgetDescription()static NatsStreamingSourceConfigvalueOf(String name)Returns the enum constant of this type with the specified name.static NatsStreamingSourceConfig[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARM
public static final NatsStreamingSourceConfig ARM
-
LINUX
public static final NatsStreamingSourceConfig LINUX
-
MAC
public static final NatsStreamingSourceConfig MAC
-
WINDOWS
public static final NatsStreamingSourceConfig WINDOWS
-
SOLARIS
public static final NatsStreamingSourceConfig SOLARIS
-
DEFAULT
public static final NatsStreamingSourceConfig DEFAULT
-
-
Method Detail
-
values
public static NatsStreamingSourceConfig[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NatsStreamingSourceConfig c : NatsStreamingSourceConfig.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NatsStreamingSourceConfig valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getDefaultValue
public String getDefaultValue()
-
getDescription
public String getDescription()
-
-