public static enum BytesTransformers.ChecksumTransformer.Mode extends Enum<BytesTransformers.ChecksumTransformer.Mode>
| Enum Constant and Description |
|---|
APPEND
Appends checksum to given byte array
|
TRANSFORM
Transforms byte array and returns only checksum
|
| Modifier and Type | Method and Description |
|---|---|
static BytesTransformers.ChecksumTransformer.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BytesTransformers.ChecksumTransformer.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BytesTransformers.ChecksumTransformer.Mode APPEND
public static final BytesTransformers.ChecksumTransformer.Mode TRANSFORM
public static BytesTransformers.ChecksumTransformer.Mode[] values()
for (BytesTransformers.ChecksumTransformer.Mode c : BytesTransformers.ChecksumTransformer.Mode.values()) System.out.println(c);
public static BytesTransformers.ChecksumTransformer.Mode 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 nullCopyright © 2017–2019. All rights reserved.