Package ru.clinicainfo.protocol
Enum GetResourceContentRequest.ResourceValues
- java.lang.Object
-
- java.lang.Enum<GetResourceContentRequest.ResourceValues>
-
- ru.clinicainfo.protocol.GetResourceContentRequest.ResourceValues
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GetResourceContentRequest.ResourceValues>
- Enclosing class:
- GetResourceContentRequest
public static enum GetResourceContentRequest.ResourceValues extends java.lang.Enum<GetResourceContentRequest.ResourceValues>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALL_DOCTOR_AVAILIBLEMOBILE_INFO_TEXTPERSONAL_AREA_TEXTPERSONAL_DATAPRICE_LIST_EMPTY_TEXTPRICE_LIST_TEXT_FOR_MODEL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GetResourceContentRequest.ResourceValuesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GetResourceContentRequest.ResourceValues[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MOBILE_INFO_TEXT
public static final GetResourceContentRequest.ResourceValues MOBILE_INFO_TEXT
-
CALL_DOCTOR_AVAILIBLE
public static final GetResourceContentRequest.ResourceValues CALL_DOCTOR_AVAILIBLE
-
PERSONAL_AREA_TEXT
public static final GetResourceContentRequest.ResourceValues PERSONAL_AREA_TEXT
-
PERSONAL_DATA
public static final GetResourceContentRequest.ResourceValues PERSONAL_DATA
-
PRICE_LIST_EMPTY_TEXT
public static final GetResourceContentRequest.ResourceValues PRICE_LIST_EMPTY_TEXT
-
PRICE_LIST_TEXT_FOR_MODEL
public static final GetResourceContentRequest.ResourceValues PRICE_LIST_TEXT_FOR_MODEL
-
-
Method Detail
-
values
public static GetResourceContentRequest.ResourceValues[] 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 (GetResourceContentRequest.ResourceValues c : GetResourceContentRequest.ResourceValues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GetResourceContentRequest.ResourceValues valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-