public static enum Digest.DigestComputationStyle extends java.lang.Enum<Digest.DigestComputationStyle>
| Enum Constant and Description |
|---|
Activate
The core is being updated from a session via an activation
|
Image
The resource is being updated from an existing resource (perhaps in a different session or core) or was existing at some point in time.
|
Replicate
The resource is being updated to an exact replica of the same resource coming from a different system
|
User
Digest is being (re)computed for a resource whose data is being supplied by the user explicitly.
|
| Modifier and Type | Method and Description |
|---|---|
static Digest.DigestComputationStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Digest.DigestComputationStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Digest.DigestComputationStyle User
public static final Digest.DigestComputationStyle Image
public static final Digest.DigestComputationStyle Activate
public static final Digest.DigestComputationStyle Replicate
public static Digest.DigestComputationStyle[] values()
for (Digest.DigestComputationStyle c : Digest.DigestComputationStyle.values())
System.out.println(c);
public static Digest.DigestComputationStyle valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null