Package fi.tut.mei.resdescapi.rdapi
Enum RD_API.EnumIfCategory
- java.lang.Object
-
- java.lang.Enum<RD_API.EnumIfCategory>
-
- fi.tut.mei.resdescapi.rdapi.RD_API.EnumIfCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<RD_API.EnumIfCategory>
- Enclosing class:
- RD_API
public static enum RD_API.EnumIfCategory extends Enum<RD_API.EnumIfCategory>
Enumeration for interface Categories. Allowed values are: MECHANICAL, ELECTRICAL, SERVICE, COMMUNICATION, OTHER
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMMUNICATION
ELECTRICAL
MECHANICAL
OTHER
SERVICE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RD_API.EnumIfCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static RD_API.EnumIfCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MECHANICAL
public static final RD_API.EnumIfCategory MECHANICAL
-
ELECTRICAL
public static final RD_API.EnumIfCategory ELECTRICAL
-
SERVICE
public static final RD_API.EnumIfCategory SERVICE
-
COMMUNICATION
public static final RD_API.EnumIfCategory COMMUNICATION
-
OTHER
public static final RD_API.EnumIfCategory OTHER
-
-
Method Detail
-
values
public static RD_API.EnumIfCategory[] 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 (RD_API.EnumIfCategory c : RD_API.EnumIfCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RD_API.EnumIfCategory 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
-
-