Package com.ibm.fhir.smart
Enum Scope.ContextType
- java.lang.Object
-
- java.lang.Enum<Scope.ContextType>
-
- com.ibm.fhir.smart.Scope.ContextType
-
- All Implemented Interfaces:
Serializable
,Comparable<Scope.ContextType>
- Enclosing class:
- Scope
public static enum Scope.ContextType extends Enum<Scope.ContextType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Scope.ContextType
from(String value)
String
value()
static Scope.ContextType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Scope.ContextType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATIENT
public static final Scope.ContextType PATIENT
-
USER
public static final Scope.ContextType USER
-
SYSTEM
public static final Scope.ContextType SYSTEM
-
-
Method Detail
-
values
public static Scope.ContextType[] 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 (Scope.ContextType c : Scope.ContextType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Scope.ContextType 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
-
value
public String value()
-
from
public static Scope.ContextType from(String value)
-
-