public enum RequestSort extends Enum<RequestSort>
| Enum Constant and Description |
|---|
dateofvalidation |
id |
officialname |
registrationdate |
| Modifier and Type | Method and Description |
|---|---|
static RequestSort |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestSort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestSort id
public static final RequestSort officialname
public static final RequestSort dateofvalidation
public static final RequestSort registrationdate
public static RequestSort[] values()
for (RequestSort c : RequestSort.values()) System.out.println(c);
public static RequestSort valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025. All rights reserved.