public enum ChecksumValidation extends Enum<ChecksumValidation>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ChecksumValidation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecksumValidation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChecksumValidation OFF
public static final ChecksumValidation ON
public static ChecksumValidation[] values()
for (ChecksumValidation c : ChecksumValidation.values()) System.out.println(c);
public static ChecksumValidation 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 toString()
toString
in class Enum<ChecksumValidation>
Copyright © 2015. All rights reserved.