public enum NagiosEncryptionMethod extends Enum<NagiosEncryptionMethod>
Modifier and Type | Method and Description |
---|---|
static NagiosEncryptionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NagiosEncryptionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NagiosEncryptionMethod No
public static final NagiosEncryptionMethod Xor
public static final NagiosEncryptionMethod TripleDes
public static NagiosEncryptionMethod[] values()
for (NagiosEncryptionMethod c : NagiosEncryptionMethod.values()) System.out.println(c);
public static NagiosEncryptionMethod 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 nullApache Camel