Package com.pspdfkit.document.providers
Enum WritableDataProvider.WriteMode
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum WritableDataProvider.WriteMode extends Enum<WritableDataProvider.WriteMode>
Describes possible write modes for the output.
-
-
Field Summary
Fields Modifier and Type Field Description private final EnumEntries<WritableDataProvider.WriteMode>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description REWRITE_FILE
Written file will be rewritten in full.
APPEND_TO_FILE
Changes must only be appended to existing file.
-
Method Summary
Modifier and Type Method Description final WritableDataProvider.WriteMode
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<WritableDataProvider.WriteMode>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<WritableDataProvider.WriteMode>
getEntries()
Describes possible write modes for the output. -
-
Method Detail
-
valueOf
final WritableDataProvider.WriteMode valueOf(String value)
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.)
-
values
final Array<WritableDataProvider.WriteMode> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<WritableDataProvider.WriteMode> getEntries()
Describes possible write modes for the output.
-
-
-
-