Class InternalOptionKey<T>
java.lang.Object
org.apache.sis.setup.OptionKey<T>
org.apache.sis.internal.storage.io.InternalOptionKey<T>
- Type Parameters:
T
- the type of option values.
- All Implemented Interfaces:
Serializable
StorageConnector
options not part of public API.
Some of those options may move to public API in the future if useful.- Since:
- 1.2
- Version:
- 1.2
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final InternalOptionKey
<UnaryOperator<ChannelFactory>> Wraps readable or writable channels on creation.private static final long
For cross-version compatibility.Fields inherited from class org.apache.sis.setup.OptionKey
BYTE_BUFFER, ENCODING, GEOMETRY_LIBRARY, INDENTATION, LOCALE, OPEN_OPTIONS, TIMEZONE, URL_ENCODING
-
Constructor Summary
ConstructorsConstructorDescriptionInternalOptionKey
(String name, Class<T> type) Creates a new key of the given name. -
Method Summary
Methods inherited from class org.apache.sis.setup.OptionKey
equals, getElementType, getName, getValueFrom, hashCode, setValueInto, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor cross-version compatibility.- See Also:
-
CHANNEL_FACTORY_WRAPPER
Wraps readable or writable channels on creation. Wrappers can be used for example in order to listen to read events or for transforming bytes on the fly.
-
-
Constructor Details
-
InternalOptionKey
Creates a new key of the given name.- Parameters:
name
- the key name.type
- the type of values.
-