Package fi.tut.mei.resdescapi.rescatapi
Enum ResCatStorageInterface.EnumSearchDomainForARD
- java.lang.Object
-
- java.lang.Enum<ResCatStorageInterface.EnumSearchDomainForARD>
-
- fi.tut.mei.resdescapi.rescatapi.ResCatStorageInterface.EnumSearchDomainForARD
-
- All Implemented Interfaces:
Serializable
,Comparable<ResCatStorageInterface.EnumSearchDomainForARD>
- Enclosing interface:
- ResCatStorageInterface
public static enum ResCatStorageInterface.EnumSearchDomainForARD extends Enum<ResCatStorageInterface.EnumSearchDomainForARD>
Enumeration for which ARD's internal search domains is used for search. Accepted values are: ARD, PROFILE, ANY
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResCatStorageInterface.EnumSearchDomainForARD
valueOf(String name)
Returns the enum constant of this type with the specified name.static ResCatStorageInterface.EnumSearchDomainForARD[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARD
public static final ResCatStorageInterface.EnumSearchDomainForARD ARD
-
PROFILE
public static final ResCatStorageInterface.EnumSearchDomainForARD PROFILE
-
ANY
public static final ResCatStorageInterface.EnumSearchDomainForARD ANY
-
-
Method Detail
-
values
public static ResCatStorageInterface.EnumSearchDomainForARD[] 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 (ResCatStorageInterface.EnumSearchDomainForARD c : ResCatStorageInterface.EnumSearchDomainForARD.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResCatStorageInterface.EnumSearchDomainForARD 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
-
-