Enum SignatureCreationDateComparator.Order
- java.lang.Object
-
- java.lang.Enum<SignatureCreationDateComparator.Order>
-
- org.pgpainless.signature.consumer.SignatureCreationDateComparator.Order
-
- All Implemented Interfaces:
Serializable
,Comparable<SignatureCreationDateComparator.Order>
- Enclosing class:
- SignatureCreationDateComparator
public static enum SignatureCreationDateComparator.Order extends Enum<SignatureCreationDateComparator.Order>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEW_TO_OLD
Newest signatures first.OLD_TO_NEW
Oldest signatures first.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SignatureCreationDateComparator.Order
valueOf(String name)
Returns the enum constant of this type with the specified name.static SignatureCreationDateComparator.Order[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OLD_TO_NEW
public static final SignatureCreationDateComparator.Order OLD_TO_NEW
Oldest signatures first.
-
NEW_TO_OLD
public static final SignatureCreationDateComparator.Order NEW_TO_OLD
Newest signatures first.
-
-
Method Detail
-
values
public static SignatureCreationDateComparator.Order[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SignatureCreationDateComparator.Order c : SignatureCreationDateComparator.Order.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SignatureCreationDateComparator.Order valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-