Enum Class TLfnReplicationResource.Status
java.lang.Object
java.lang.Enum<TLfnReplicationResource.Status>
com.luciad.fusion.engine.replication.TLfnReplicationResource.Status
- All Implemented Interfaces:
Serializable
,Comparable<TLfnReplicationResource.Status>
,Constable
- Enclosing class:
TLfnReplicationResource
Enumeration representing the replication status of a resource
- Since:
- 2015.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe resource is present on both the master and the slave tile store, and the versions on master and slave are equally recent.The resource is present on both the master and the slave tile store, but the version on the master is more recent compared to the one on the slave.The resource is present on both the master and the slave tile store, but the version on the slave is more recent compared to the one on the slave.The resource is present on the master tile store, but not on the slave tile store.The resource is present on the slave tile store, but not on the master tile store. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLfnReplicationResource.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ONLY_PRESENT_ON_MASTER
The resource is present on the master tile store, but not on the slave tile store. -
ONLY_PRESENT_ON_SLAVE
The resource is present on the slave tile store, but not on the master tile store. -
MORE_RECENT_ON_MASTER
The resource is present on both the master and the slave tile store, but the version on the master is more recent compared to the one on the slave. -
MORE_RECENT_ON_SLAVE
The resource is present on both the master and the slave tile store, but the version on the slave is more recent compared to the one on the slave. -
EQUALLY_RECENT_ON_MASTER_AND_SLAVE
The resource is present on both the master and the slave tile store, and the versions on master and slave are equally recent.
-
-
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
-