Package org.osgi.service.onem2m.dto
Enum SecurityInfoDTO.SecurityInfoType
- java.lang.Object
-
- java.lang.Enum<SecurityInfoDTO.SecurityInfoType>
-
- org.osgi.service.onem2m.dto.SecurityInfoDTO.SecurityInfoType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SecurityInfoDTO.SecurityInfoType>
- Enclosing class:
- SecurityInfoDTO
public static enum SecurityInfoDTO.SecurityInfoType extends java.lang.Enum<SecurityInfoDTO.SecurityInfoType>
Enum SecurityInfoType- See Also:
- oenM2M TS-0004 6.3.4.2.35
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DynamicAuthorizationRelationshipMappingRequest
DynamicAuthorizationRelationshipMappingRequestDynamicAuthorizationRelationshipMappingResponse
DynamicAuthorizationRelationshipMappingResponseDynamicAuthorizationRequest
DynamicAuthorizationRequestDynamicAuthorizationResponse
DynamicAuthorizationResponseESCertKEMessage
ESCertKEMessageESPrimObject
ESPrimObjectReceiverESPrimRandObjectRequest
ReceiverESPrimRandObjectRequestReceiverESPrimRandObjectResponse
ReceiverESPrimRandObjectResponse
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Get assigned value.static SecurityInfoDTO.SecurityInfoType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SecurityInfoDTO.SecurityInfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DynamicAuthorizationRequest
public static final SecurityInfoDTO.SecurityInfoType DynamicAuthorizationRequest
DynamicAuthorizationRequest
-
DynamicAuthorizationResponse
public static final SecurityInfoDTO.SecurityInfoType DynamicAuthorizationResponse
DynamicAuthorizationResponse
-
ReceiverESPrimRandObjectRequest
public static final SecurityInfoDTO.SecurityInfoType ReceiverESPrimRandObjectRequest
ReceiverESPrimRandObjectRequest
-
ReceiverESPrimRandObjectResponse
public static final SecurityInfoDTO.SecurityInfoType ReceiverESPrimRandObjectResponse
ReceiverESPrimRandObjectResponse
-
ESPrimObject
public static final SecurityInfoDTO.SecurityInfoType ESPrimObject
ESPrimObject
-
ESCertKEMessage
public static final SecurityInfoDTO.SecurityInfoType ESCertKEMessage
ESCertKEMessage
-
DynamicAuthorizationRelationshipMappingRequest
public static final SecurityInfoDTO.SecurityInfoType DynamicAuthorizationRelationshipMappingRequest
DynamicAuthorizationRelationshipMappingRequest
-
DynamicAuthorizationRelationshipMappingResponse
public static final SecurityInfoDTO.SecurityInfoType DynamicAuthorizationRelationshipMappingResponse
DynamicAuthorizationRelationshipMappingResponse
-
-
Method Detail
-
values
public static SecurityInfoDTO.SecurityInfoType[] 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 (SecurityInfoDTO.SecurityInfoType c : SecurityInfoDTO.SecurityInfoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurityInfoDTO.SecurityInfoType 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
-
getValue
public int getValue()
Get assigned value.- Returns:
- assigned value
-
-