public enum CesiumGenerationStatus extends Enum<CesiumGenerationStatus> implements Enumeration
ICzmlDocumentPacketizer.generateNextPacket().| Enum Constant and Description | 
|---|
DONE
All data has been written. 
 | 
MORE_TO_GENERATE
There is more data to write. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static CesiumGenerationStatus | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static CesiumGenerationStatus | 
getFromValue(int value)
Get the enum constant that is associated with the given numeric value. 
 | 
int | 
getValue()
Get the numeric value associated with this enum constant. 
 | 
static CesiumGenerationStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static CesiumGenerationStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CesiumGenerationStatus DONE
ICzmlDocumentPacketizer.generateNextPacket() are needed.public static final CesiumGenerationStatus MORE_TO_GENERATE
ICzmlDocumentPacketizer.generateNextPacket() should be called again to write the next packet.public static CesiumGenerationStatus[] values()
for (CesiumGenerationStatus c : CesiumGenerationStatus.values()) System.out.println(c);
public static CesiumGenerationStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
getValue in interface Enumeration@Nonnull public static CesiumGenerationStatus getFromValue(int value)
value - a numeric value.@Nonnull public static CesiumGenerationStatus getDefault()