Enum SupportedEprUriScheme
-
- All Implemented Interfaces:
public enum SupportedEprUriSchemeEnumeration of URI schemes that are supported to be used as an EPR address.
The recommended way of creating a unique EPR address is the UUID approach. A comprehensive list of URI schemes is requestable from the IANA website.
The device logic may use portions of the EPR address information to enrich XAddrs URL base paths. If an unknown URI type is given, then no extra information will be added.
-
-
Field Summary
Fields Modifier and Type Field Description public final StringschemeNamepublic final StringspecificPart
-
Method Summary
Modifier and Type Method Description static Array<SupportedEprUriScheme>values()Returns an array containing the constants of this enum type, in the order they're declared. static SupportedEprUriSchemevalueOf(String name)Returns the enum constant of this type with the specified name. StringgetSchemeName()StringgetSpecificPart()-
-
Method Detail
-
values
static Array<SupportedEprUriScheme> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static SupportedEprUriScheme 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.)
- Returns:
the enum constant with the specified name
-
getSchemeName
String getSchemeName()
-
getSpecificPart
String getSpecificPart()
-
-
-
-