public static enum EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm extends Enum<EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm>
The algorithm which should be used for calculating the entity tag checksum value.
Enum Constant and Description |
---|
ADLER_32
The Adler-32 checksum algorithm which is almost as reliable as
a CRC-32 but can be computed much faster.
|
CRC_32
The CRC-32 checksum algorithm.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm ADLER_32
public static final EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm CRC_32
public static EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm[] values()
for (EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm c : EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm.values()) System.out.println(c);
public static EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm 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<EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm>
Copyright 2010-2018 ForgeRock AS.