Package com.highdeal.cnd.message
Enum Class ISessionDefaultAttributeHolder.TransactionSelectionCriteria
java.lang.Object
java.lang.Enum<ISessionDefaultAttributeHolder.TransactionSelectionCriteria>
com.highdeal.cnd.message.ISessionDefaultAttributeHolder.TransactionSelectionCriteria
- All Implemented Interfaces:
Serializable,Comparable<ISessionDefaultAttributeHolder.TransactionSelectionCriteria>,Constable
- Enclosing interface:
- ISessionDefaultAttributeHolder
public static enum ISessionDefaultAttributeHolder.TransactionSelectionCriteria
extends Enum<ISessionDefaultAttributeHolder.TransactionSelectionCriteria>
This
enumeration defines the
selection criteria for transaction selection: NONE_TRANSACTION, MASTER_TRANSACTION, ALL_TRANSACTION, or ALL_TRANSACTION_AND_RECURRING.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll usage transactions are returnedAll usage, recurring, and one-shot transactions are returnedOnly the master usage transaction is returnedNo transaction at all is returned to the client application -
Method Summary
Modifier and TypeMethodDescriptiongetFromInt(int value) intintValue()Returns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NONE_TRANSACTION
No transaction at all is returned to the client application -
MASTER_TRANSACTION
Only the master usage transaction is returned -
ALL_TRANSACTION
All usage transactions are returned -
ALL_TRANSACTION_AND_RECURRING
public static final ISessionDefaultAttributeHolder.TransactionSelectionCriteria ALL_TRANSACTION_AND_RECURRINGAll usage, recurring, and one-shot transactions are returned
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
intValue
public int intValue() -
getFromInt
-