Uses of Class
com.authlete.common.types.ServiceProfile
-
Packages that use ServiceProfile Package Description com.authlete.common.dto Requests to and responses from Authlete APIs and some data structures.com.authlete.common.types Enum definitions and lists of pre-defined constants. -
-
Uses of ServiceProfile in com.authlete.common.dto
Methods in com.authlete.common.dto that return ServiceProfile Modifier and Type Method Description ServiceProfile[]
Service. getSupportedServiceProfiles()
Get the supported service profiles.Methods in com.authlete.common.dto with parameters of type ServiceProfile Modifier and Type Method Description Service
Service. setSupportedServiceProfiles(ServiceProfile[] profiles)
Set the supported service profiles.boolean
Service. supports(ServiceProfile profile)
Check if this service supports the specified profile.boolean
Service. supportsAll(ServiceProfile... profiles)
Check if this service supports all the specified service profiles.boolean
Service. supportsAny(ServiceProfile... profiles)
Check if this service any of the specified service profiles.Method parameters in com.authlete.common.dto with type arguments of type ServiceProfile Modifier and Type Method Description Service
Service. setSupportedServiceProfiles(Iterable<ServiceProfile> profiles)
Set the supported service profiles.boolean
Service. supportsAll(Iterable<ServiceProfile> profiles)
Check if this service supports all the specified service profiles.boolean
Service. supportsAny(Iterable<ServiceProfile> profiles)
Check if this service any of the specified service profiles. -
Uses of ServiceProfile in com.authlete.common.types
Methods in com.authlete.common.types that return ServiceProfile Modifier and Type Method Description static ServiceProfile
ServiceProfile. getByValue(short value)
Find an instance of this enum by a value.static ServiceProfile
ServiceProfile. parse(String serviceProfile)
ConvertString
toServiceProfile
.static ServiceProfile[]
ServiceProfile. toArray(int bits)
static ServiceProfile
ServiceProfile. valueOf(String name)
Returns the enum constant of this type with the specified name.static ServiceProfile[]
ServiceProfile. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.authlete.common.types that return types with arguments of type ServiceProfile Modifier and Type Method Description static EnumSet<ServiceProfile>
ServiceProfile. toSet(int bits)
static EnumSet<ServiceProfile>
ServiceProfile. toSet(ServiceProfile[] array)
Methods in com.authlete.common.types with parameters of type ServiceProfile Modifier and Type Method Description static EnumSet<ServiceProfile>
ServiceProfile. toSet(ServiceProfile[] array)
Method parameters in com.authlete.common.types with type arguments of type ServiceProfile Modifier and Type Method Description static int
ServiceProfile. toBits(EnumSet<ServiceProfile> set)
-