Package com.mapfactor.sdk
Enum Class MpfcEngine.InitStatus
- All Implemented Interfaces:
- Serializable,- Comparable<MpfcEngine.InitStatus>,- Constable
- Enclosing interface:
- MpfcEngine
MapFactor SDK initialization progress status
- Since:
- 1.0
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionInitialization process finished (either successfully or failed)Initialization currently in progressInitialization has not started yetRe-initialization is in progress due to a change in library settings
- 
Method SummaryModifier and TypeMethodDescriptionstatic MpfcEngine.InitStatusReturns the enum constant of this class with the specified name.static MpfcEngine.InitStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
NOT_INITIALIZEDInitialization has not started yet- Since:
- 1.0
 
- 
IN_PROGRESSInitialization currently in progress- Since:
- 1.0
 
- 
FINISHEDInitialization process finished (either successfully or failed)- Since:
- 1.0
 
- 
RESTARTINGRe-initialization is in progress due to a change in library settings- Since:
- 1.0
 
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-