Uses of Class
org.apache.sis.setup.OptionKey
-
Packages that use OptionKey Package Description org.apache.sis.setup Provides information and some controls about SIS configuration.org.apache.sis.storage Data store base types for retrieving and saving geospatial data in various storage formats. -
-
Uses of OptionKey in org.apache.sis.setup
Fields in org.apache.sis.setup declared as OptionKey Modifier and Type Field Description static OptionKey<ByteBuffer>OptionKey. BYTE_BUFFERThe byte buffer to use for input/output operations.static OptionKey<Charset>OptionKey. ENCODINGThe character encoding of document content.static OptionKey<GeometryLibrary>OptionKey. GEOMETRY_LIBRARYThe library to use for creating geometric objects at reading time.static OptionKey<Integer>OptionKey. INDENTATIONThe number of spaces to use for indentation when formatting text files in WKT or XML formats.static OptionKey<Locale>OptionKey. LOCALEThe locale to use for locale-sensitive data.static OptionKey<OpenOption[]>OptionKey. OPEN_OPTIONSWhether a storage object (e.g. aDataStore) shall be opened in read, write, append or other modes.static OptionKey<TimeZone>OptionKey. TIMEZONEThe timezone to use when parsing or formatting dates and times without explicit timezone.static OptionKey<String>OptionKey. URL_ENCODINGThe encoding of a URL (not the encoding of the document content).Methods in org.apache.sis.setup that return types with arguments of type OptionKey Modifier and Type Method Description Map<OptionKey<?>,Object>OptionKey. setValueInto(Map<OptionKey<?>,Object> options, T value)Sets a value for this option key in the given map, or in a new map if the given map isnull.Method parameters in org.apache.sis.setup with type arguments of type OptionKey Modifier and Type Method Description TOptionKey. getValueFrom(Map<OptionKey<?>,?> options)Returns the option value in the given map for this key, ornullif none.Map<OptionKey<?>,Object>OptionKey. setValueInto(Map<OptionKey<?>,Object> options, T value)Sets a value for this option key in the given map, or in a new map if the given map isnull. -
Uses of OptionKey in org.apache.sis.storage
Subclasses of OptionKey in org.apache.sis.storage Modifier and Type Class Description classDataOptionKey<T>Keys in a map of options for configuring the way data are read or written to a storage.Fields in org.apache.sis.storage declared as OptionKey Modifier and Type Field Description static OptionKey<FoliationRepresentation>DataOptionKey. FOLIATION_REPRESENTATIONWhether to assemble trajectory fragments (distinct CSV lines) into a singleFeatureinstance forming a foliation.Methods in org.apache.sis.storage with parameters of type OptionKey Modifier and Type Method Description <T> TStorageConnector. getOption(OptionKey<T> key)Returns the option value for the given key, ornullif none.<T> voidStorageConnector. setOption(OptionKey<T> key, T value)Sets the option value for the given key.
-