Package com.soffid.iam.reconcile.common
Class AccountProposedAction
- java.lang.Object
-
- com.soffid.iam.reconcile.common.AccountProposedAction
-
- All Implemented Interfaces:
Serializable
public class AccountProposedAction extends Object implements Serializable
Enumeration AccountProposedAction- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static AccountProposedAction
BIND_TO_EXISTING_USER
static AccountProposedAction
CREATE_NEW_USER
static AccountProposedAction
DELETE_ACCOUNT
static AccountProposedAction
IGNORE
static AccountProposedAction
SHARED
static AccountProposedAction
UPDATE_ACCOUNT
-
Constructor Summary
Constructors Modifier Constructor Description protected
AccountProposedAction()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Object that)
boolean
equals(Object object)
static AccountProposedAction
fromString(String value)
Creates an instance of AccountProposedAction fromvalue
.String
getValue()
Gets the underlying value of this type safe enumeration.int
hashCode()
static List
literals()
Returns an unmodifiable list containing the literals that are known by this enumeration.static List
names()
Returns an unmodifiable list containing the names of the literals that are known by this enumeration.String
toString()
-
-
-
Field Detail
-
IGNORE
public static final AccountProposedAction IGNORE
-
CREATE_NEW_USER
public static final AccountProposedAction CREATE_NEW_USER
-
BIND_TO_EXISTING_USER
public static final AccountProposedAction BIND_TO_EXISTING_USER
-
SHARED
public static final AccountProposedAction SHARED
-
UPDATE_ACCOUNT
public static final AccountProposedAction UPDATE_ACCOUNT
-
DELETE_ACCOUNT
public static final AccountProposedAction DELETE_ACCOUNT
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toString
in classObject
- See Also:
Object.toString()
-
fromString
public static AccountProposedAction fromString(String value)
Creates an instance of AccountProposedAction fromvalue
.- Parameters:
value
- the value to create the AccountProposedAction from.
-
getValue
public String getValue()
Gets the underlying value of this type safe enumeration.- Returns:
- the underlying value.
-
compareTo
public int compareTo(Object that)
- See Also:
Comparable.compareTo(java.lang.Object)
-
literals
public static List literals()
Returns an unmodifiable list containing the literals that are known by this enumeration.- Returns:
- A List containing the actual literals defined by this enumeration, this list can not be modified.
-
names
public static List names()
Returns an unmodifiable list containing the names of the literals that are known by this enumeration.- Returns:
- A List containing the actual names of the literals defined by this enumeration, this list can not be modified.
-
equals
public boolean equals(Object object)
- Overrides:
equals
in classObject
- See Also:
Object.equals(java.lang.Object)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
- See Also:
Object.hashCode()
-
-