public enum ZendriveDriveDetectionMode extends java.lang.Enum<ZendriveDriveDetectionMode>
Enum Constant and Description |
---|
AUTO_OFF
Zendrive SDK will not automatically detect and track drives in background in
this mode once the SDK is setup.
|
AUTO_ON
Zendrive SDK will automatically detect and track drives in background in
this mode once the SDK is setup.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Provides a value for each enum value that is stable across releases.
|
static ZendriveDriveDetectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZendriveDriveDetectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZendriveDriveDetectionMode AUTO_ON
public static final ZendriveDriveDetectionMode AUTO_OFF
public static ZendriveDriveDetectionMode[] values()
for (ZendriveDriveDetectionMode c : ZendriveDriveDetectionMode.values()) System.out.println(c);
public static ZendriveDriveDetectionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()