EVAccessType (API Reference)
Package com.here.sdk.search
Enum Class EVAccessType
- All Implemented Interfaces:
Serializable,Comparable<EVAccessType>,Constable
Represents the accessibility level of an EVChargingPool.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOnly accessible to a specific individual or group, such as at a private home.Fully accessible to the general public.Accessible only to a limited group, such as customers, taxis, or vehicles from specific brands. -
Method Summary
Modifier and TypeMethodDescriptionstatic EVAccessTypeReturns the enum constant of this class with the specified name.static EVAccessType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PUBLIC_ACCESS
Fully accessible to the general public.
-
RESTRICTED_ACCESS
Accessible only to a limited group, such as customers, taxis, or vehicles from specific brands.
-
PRIVATE_ACCESS
Only accessible to a specific individual or group, such as at a private home.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-