Package org.prebid.mobile.rendering.sdk
Enum ManagersResolver.ManagerType
- java.lang.Object
-
- java.lang.Enum<ManagersResolver.ManagerType>
-
- org.prebid.mobile.rendering.sdk.ManagersResolver.ManagerType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ManagersResolver.ManagerType>
- Enclosing class:
- ManagersResolver
public static enum ManagersResolver.ManagerType extends java.lang.Enum<ManagersResolver.ManagerType>
The Enum ManagerType.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEVICE_MANAGERThe device manager.LOCATION_MANAGERThe location manager.NETWORK_MANAGERThe network manager.USER_CONSENT_MANAGERThe GDPR manager.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ManagersResolver.ManagerTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ManagersResolver.ManagerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEVICE_MANAGER
public static final ManagersResolver.ManagerType DEVICE_MANAGER
The device manager.
-
LOCATION_MANAGER
public static final ManagersResolver.ManagerType LOCATION_MANAGER
The location manager.
-
NETWORK_MANAGER
public static final ManagersResolver.ManagerType NETWORK_MANAGER
The network manager.
-
USER_CONSENT_MANAGER
public static final ManagersResolver.ManagerType USER_CONSENT_MANAGER
The GDPR manager.
-
-
Method Detail
-
values
public static ManagersResolver.ManagerType[] 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 (ManagersResolver.ManagerType c : ManagersResolver.ManagerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagersResolver.ManagerType 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
-
-