public final class ModificationType extends Object
Modifier and Type | Class and Description |
---|---|
static class |
ModificationType.Enum
Contains equivalent values for the ModificationType values.
|
Modifier and Type | Field and Description |
---|---|
static ModificationType |
ADD
Add the values listed in the modification to the attribute, creating the
attribute if necessary.
|
static ModificationType |
DELETE
Delete the values listed in the modification from the attribute.
|
static ModificationType |
INCREMENT
Increment all existing values of the attribute by the amount specified in
the modification value.
|
static ModificationType |
REPLACE
Replace all existing values of the attribute with the new values listed
in the modification, creating the attribute if it did not already exist.
|
Modifier and Type | Method and Description |
---|---|
ModificationType.Enum |
asEnum()
Returns the enum equivalent for this modification type.
|
boolean |
equals(Object obj) |
int |
hashCode() |
int |
intValue()
Returns the integer value of this modification change type as defined in
RFC 4511 section 4.6.
|
String |
toString()
Returns the string representation of this modification change type.
|
static ModificationType |
valueOf(int intValue)
Returns the modification change type having the specified integer value
as defined in RFC 4511 section 4.6.
|
static List<ModificationType> |
values()
Returns an unmodifiable list containing the set of available modification
change types indexed on their integer value as defined in RFC 4511
section 4.6.
|
public static final ModificationType ADD
public static final ModificationType DELETE
public static final ModificationType REPLACE
public static final ModificationType INCREMENT
public static ModificationType valueOf(int intValue)
intValue
- The integer value of the modification change type.null
if there was no
modification change type associated with intValue
.public static List<ModificationType> values()
public int intValue()
public ModificationType.Enum asEnum()
ModificationType.Enum.UNKNOWN
if this is an unknown modification type.Copyright © 2010-2018, ForgeRock All Rights Reserved.