Enum SearchCertificateSortRestRequest.PropertyEnum
- java.lang.Object
-
- java.lang.Enum<SearchCertificateSortRestRequest.PropertyEnum>
-
- de.trustable.ca3s.core.service.dto.ejbca.SearchCertificateSortRestRequest.PropertyEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SearchCertificateSortRestRequest.PropertyEnum>
- Enclosing class:
- SearchCertificateSortRestRequest
public static enum SearchCertificateSortRestRequest.PropertyEnum extends Enum<SearchCertificateSortRestRequest.PropertyEnum>
Sorted by
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSearchCertificateSortRestRequest.PropertyEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description CERTIFICATE_PROFILEEND_ENTITY_PROFILEEXPIRE_DATEEXTERNAL_ACCOUNT_BINDING_IDISSUED_DATEISSUER_DNREVOCATION_DATESTATUSSUBJECT_DNTAGTYPEUPDATE_TIMEUSERNAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SearchCertificateSortRestRequest.PropertyEnumfromValue(String input)StringgetValue()StringtoString()static SearchCertificateSortRestRequest.PropertyEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SearchCertificateSortRestRequest.PropertyEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USERNAME
public static final SearchCertificateSortRestRequest.PropertyEnum USERNAME
-
ISSUER_DN
public static final SearchCertificateSortRestRequest.PropertyEnum ISSUER_DN
-
SUBJECT_DN
public static final SearchCertificateSortRestRequest.PropertyEnum SUBJECT_DN
-
EXTERNAL_ACCOUNT_BINDING_ID
public static final SearchCertificateSortRestRequest.PropertyEnum EXTERNAL_ACCOUNT_BINDING_ID
-
END_ENTITY_PROFILE
public static final SearchCertificateSortRestRequest.PropertyEnum END_ENTITY_PROFILE
-
CERTIFICATE_PROFILE
public static final SearchCertificateSortRestRequest.PropertyEnum CERTIFICATE_PROFILE
-
STATUS
public static final SearchCertificateSortRestRequest.PropertyEnum STATUS
-
TAG
public static final SearchCertificateSortRestRequest.PropertyEnum TAG
-
TYPE
public static final SearchCertificateSortRestRequest.PropertyEnum TYPE
-
UPDATE_TIME
public static final SearchCertificateSortRestRequest.PropertyEnum UPDATE_TIME
-
ISSUED_DATE
public static final SearchCertificateSortRestRequest.PropertyEnum ISSUED_DATE
-
EXPIRE_DATE
public static final SearchCertificateSortRestRequest.PropertyEnum EXPIRE_DATE
-
REVOCATION_DATE
public static final SearchCertificateSortRestRequest.PropertyEnum REVOCATION_DATE
-
-
Method Detail
-
values
public static SearchCertificateSortRestRequest.PropertyEnum[] 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 (SearchCertificateSortRestRequest.PropertyEnum c : SearchCertificateSortRestRequest.PropertyEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchCertificateSortRestRequest.PropertyEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<SearchCertificateSortRestRequest.PropertyEnum>
-
fromValue
public static SearchCertificateSortRestRequest.PropertyEnum fromValue(String input)
-
-