Skip navigation links
A B C D F G H I M N O P R S T U W 

A

AbstractGeometryIOMetadata - Class in org.apache.commons.geometry.io.core
Abstract base class for GeometryIOMetadata implementations.
AbstractGeometryIOMetadata(String, Charset) - Constructor for class org.apache.commons.geometry.io.core.AbstractGeometryIOMetadata
Construct a new instance with the given file name and charset.
AbstractTextFormatWriter - Class in org.apache.commons.geometry.io.core.utils
Base type for classes that write text-based data formats.
AbstractTextFormatWriter(Writer) - Constructor for class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Construct a new instance that writes content to the given writer.
AbstractTextFormatWriter(Writer, DoubleFunction<String>) - Constructor for class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Construct a new instance that writes content to the given writer and uses the decimal format instance for creating floating-point string representations.
accept(T) - Method in interface org.apache.commons.geometry.io.core.internal.IOConsumer
Perform an operation with the given argument.
acceptUnchecked(IOConsumer<T>, T) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Pass the given argument to the consumer, wrapping any IOException with UncheckedIOException.
apply(T) - Method in interface org.apache.commons.geometry.io.core.internal.IOFunction
Apply the function and get a result.
applyAsInt(T) - Method in interface org.apache.commons.geometry.io.core.internal.IOToIntFunction
Apply this function to the argument.
applyAsIntUnchecked(IOToIntFunction<T>, T) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Call the given function with the argument and return the int result, wrapping any IOException with UncheckedIOException.

B

boundaries(GeometryInput, GeometryFormat, Precision.DoubleEquivalence) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Return a Stream providing access to all boundaries from the given input.
boundaries(GeometryInput, Precision.DoubleEquivalence) - Method in interface org.apache.commons.geometry.io.core.BoundaryReadHandler
Return a Stream that can be used to access all boundary information from the given input, which is expected to contain data in the format supported by this handler.
BoundaryIOManager<H extends HyperplaneConvexSubset<?>,B extends BoundarySource<H>,R extends BoundaryReadHandler<H,B>,W extends BoundaryWriteHandler<H,B>> - Class in org.apache.commons.geometry.io.core
Class managing IO operations for geometric data formats containing region boundaries.
BoundaryIOManager() - Constructor for class org.apache.commons.geometry.io.core.BoundaryIOManager
 
BoundaryReadHandler<H extends HyperplaneConvexSubset<?>,B extends BoundarySource<H>> - Interface in org.apache.commons.geometry.io.core
Basic interface for reading geometric boundary representations (B-reps) from a specific data storage format.
BoundaryWriteHandler<H extends HyperplaneConvexSubset<?>,B extends BoundarySource<H>> - Interface in org.apache.commons.geometry.io.core
Basic interface for writing geometric boundary representations (B-reps) in a specific data storage format.

C

charAt(int) - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Get the character at the given buffer index or if the index is past the end of the content.
CharReadBuffer - Class in org.apache.commons.geometry.io.core.internal
Class used to buffer characters read from an underlying Reader.
CharReadBuffer(Reader) - Constructor for class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Construct a new instance that buffers characters from the given reader.
CharReadBuffer(Reader, int) - Constructor for class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Construct a new instance that buffers characters from the given reader.
CharReadBuffer(Reader, int, int) - Constructor for class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Construct a new instance that buffers characters from the given reader.
choose(String...) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that exactly matches the current token.
choose(List<String>) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that exactly matches the current token.
chooseIgnoreCase(String...) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that matches the current token, ignoring case.
chooseIgnoreCase(List<String>) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that matches the current token, ignoring case.
close() - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
closeUnchecked(Closeable) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Close the argument, wrapping any IO exceptions with UncheckedIOException.
consume(IntPredicate, IntConsumer) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Consume characters from the stream and pass them to consumer while the given predicate returns true.
consume(int, IntConsumer) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Consume at most len characters from the stream, passing each to the given consumer.
consumeWithLineContinuation(char, int, IntConsumer) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Consume at most len characters from the stream, passing each to the given consumer.
consumeWithLineContinuation(char, IntPredicate, IntConsumer) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Consume characters from the stream and pass them to consumer while the given predicate returns true.
createBufferedReader(GeometryInput, Charset) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Create a BufferedReader for reading from the given input.
createBufferedWriter(GeometryOutput, Charset) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Create a BufferedWriter for writing to the given output.
createCloseableStream(IOFunction<I, Stream<T>>, IOSupplier<? extends I>) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Create a stream associated with an input stream.
createUnchecked(IOException) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Create an unchecked exception from the given checked exception.

D

discard(int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard len number of characters from the character stream.
discard(IntPredicate) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard characters from the stream while the given predicate returns true.
discardLine() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard all remaining characters on the current line, including the terminating newline character sequence.
discardLineWhitespace() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard the next whitespace characters on the current line.
discardNewLineSequence() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard the newline character sequence at the current reader position.
discardWhitespace() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard a sequence of whitespace characters from the character stream starting from the current parser position.
discardWithLineContinuation(char, int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard len number of characters from the character stream.
discardWithLineContinuation(char, IntPredicate) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Discard characters from the stream while the given predicate returns true.

F

FileGeometryInput - Class in org.apache.commons.geometry.io.core.input
GeometryInput implementation for reading content from a file.
FileGeometryInput(Path) - Constructor for class org.apache.commons.geometry.io.core.input.FileGeometryInput
Construct a new instance for reading from the given file.
FileGeometryInput(Path, Charset) - Constructor for class org.apache.commons.geometry.io.core.input.FileGeometryInput
Construct a new instance for reading from the given file with the specific charset.
FileGeometryOutput - Class in org.apache.commons.geometry.io.core.output
GeometryOutput implementation for writing content to a file.
FileGeometryOutput(Path) - Constructor for class org.apache.commons.geometry.io.core.output.FileGeometryOutput
Construct a new instance with the given file and no charset.
FileGeometryOutput(Path, Charset) - Constructor for class org.apache.commons.geometry.io.core.output.FileGeometryOutput
Construct a new instance with the given file and charset.

G

GeometryFormat - Interface in org.apache.commons.geometry.io.core
Interface describing a geometric data format.
GeometryInput - Interface in org.apache.commons.geometry.io.core.input
Interface representing input to a geometric I/O operation.
GeometryIOMetadata - Interface in org.apache.commons.geometry.io.core
Interface containing basic metadata fields for use in I/O operations.
GeometryIOUtils - Class in org.apache.commons.geometry.io.core.internal
Internal class containing utility methods for IO operations.
GeometryOutput - Interface in org.apache.commons.geometry.io.core.output
Interface representing the output of a geometric IO operation.
get() - Method in interface org.apache.commons.geometry.io.core.internal.IOSupplier
Get a result from the supplier.
getCharset() - Method in class org.apache.commons.geometry.io.core.AbstractGeometryIOMetadata
Get the charset for the operation, if any.
getCharset() - Method in interface org.apache.commons.geometry.io.core.GeometryIOMetadata
Get the charset for the operation, if any.
getColumnNumber() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the current column number.
getCurrentToken() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the current token.
getCurrentTokenAsDouble() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the current token parsed as a double.
getCurrentTokenAsInt() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the current token parsed as an integer.
getCurrentTokenColumnNumber() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the column position that the current token started on.
getCurrentTokenLineNumber() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the line number that the current token started on.
getDefaultFileExtension() - Method in interface org.apache.commons.geometry.io.core.GeometryFormat
Get the default file extension used by the format.
getDoubleFormat() - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Get the function used to format floating point output.
getFile() - Method in class org.apache.commons.geometry.io.core.input.FileGeometryInput
Get the input file.
getFile() - Method in class org.apache.commons.geometry.io.core.output.FileGeometryOutput
Get the output file.
getFileExtension(String) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Get the part of the file name after the last dot.
getFileExtensions() - Method in interface org.apache.commons.geometry.io.core.GeometryFormat
Get all file extensions associated with the format, including the default.
getFileName() - Method in class org.apache.commons.geometry.io.core.AbstractGeometryIOMetadata
Get the file name associated with the operation, if any.
getFileName() - Method in interface org.apache.commons.geometry.io.core.GeometryIOMetadata
Get the file name associated with the operation, if any.
getFileName(Path) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Get the file name of the given path or null if one does not exist or is the empty string.
getFileName(URL) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Get the file name of the given url or null if one does not exist or is the empty string.
getFileName(String) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Get the file name from the given path string, defined as the substring following the last path separator character.
getFormat() - Method in interface org.apache.commons.geometry.io.core.BoundaryReadHandler
Get the data format supported by this handler.
getFormat() - Method in interface org.apache.commons.geometry.io.core.BoundaryWriteHandler
Get the data format supported by this handler.
getFormatName() - Method in interface org.apache.commons.geometry.io.core.GeometryFormat
Get the format name.
getInputStream() - Method in class org.apache.commons.geometry.io.core.input.FileGeometryInput
Get the input stream for reading from the input.
getInputStream() - Method in interface org.apache.commons.geometry.io.core.input.GeometryInput
Get the input stream for reading from the input.
getInputStream() - Method in class org.apache.commons.geometry.io.core.input.StreamGeometryInput
Get the input stream for reading from the input.
getInputStream() - Method in class org.apache.commons.geometry.io.core.input.UrlGeometryInput
Get the input stream for reading from the input.
getLineNumber() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the current line number.
getLineSeparator() - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Get the current line separator.
getMaxStringLength() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get the maximum length for strings returned by this instance.
getOutputStream() - Method in class org.apache.commons.geometry.io.core.output.FileGeometryOutput
Get the output stream for writing to the output.
getOutputStream() - Method in interface org.apache.commons.geometry.io.core.output.GeometryOutput
Get the output stream for writing to the output.
getOutputStream() - Method in class org.apache.commons.geometry.io.core.output.StreamGeometryOutput
Get the output stream for writing to the output.
getReadFormats() - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the list of formats supported by the currently registered read handlers.
getReadHandlerForFileExtension(String) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the read handler for the given file extension or null if no such handler has been registered.
getReadHandlerForFormat(GeometryFormat) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the read handler for the given format or null if no such handler has been registered.
getReadHandlers() - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get all registered read handlers.
getUnchecked(IOSupplier<T>) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Get a value from supplier, wrapping any IOException with UncheckedIOException.
getUrl() - Method in class org.apache.commons.geometry.io.core.input.UrlGeometryInput
Get the input URL.
getWriteFormats() - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the list of formats supported by the currently registered write handlers.
getWriteHandlerForFileExtension(String) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the write handler for the given file extension or null if no such handler has been registered.
getWriteHandlerForFormat(GeometryFormat) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the write handler for the given format or null if no such handler has been registered.
getWriteHandlers() - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get all registered write handlers.
getWriter() - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Get the underlying writer instance.

H

hasMoreCharacters() - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Return true if more characters are available from the read buffer.
hasMoreCharacters() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if there are more characters to read from this instance.
hasMoreCharactersOnLine() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if there are more characters to read on the current line.
hasNonEmptyToken() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the current token is not null or empty.

I

IOConsumer<T> - Interface in org.apache.commons.geometry.io.core.internal
Functional interface similar to Consumer but allowing an IOException to be thrown.
IOFunction<T,R> - Interface in org.apache.commons.geometry.io.core.internal
Functional interface similar to Function but allowing an IOException to be thrown.
IOSupplier<T> - Interface in org.apache.commons.geometry.io.core.internal
Functional interface similar to Supplier but allowing an IOException to be thrown.
IOToIntFunction<T> - Interface in org.apache.commons.geometry.io.core.internal
Functional interface similar to ToIntFunction but allowing an IOException to be thrown.
isAlphanumeric(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) is alphanumeric.
isDecimalPart(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) can be used as part of the string representation of a decimal number.
isIntegerPart(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) can be used as part of the string representation of an integer.
isLineWhitespace(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) is whitespace that is not used in newline sequences (ie, not '\r' or '\n').
isNewLinePart(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) is used as part of newline sequences (ie, is either '\r' or '\n').
isNotAlphanumeric(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) is not alphanumeric.
isNotNewLinePart(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) is not used as part of newline sequences (ie, not '\r' or '\n').
isNotWhitespace(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) is not whitespace.
isWhitespace(int) - Static method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the given character (Unicode code point) is whitespace.

M

makeAvailable(int) - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Attempt to make at least n characters available in the buffer, reading characters from the underlying reader as needed.
match(String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Compare the current token with the argument and throw an exception if they are not equal.
matchIgnoreCase(String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Compare the current token with the argument and throw an exception if they are not equal.

N

next(int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read a string containing at most len characters from the stream and set it as the current token.
next(IntPredicate) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read characters from the stream while the given predicate returns true and set the result as the current token.
nextAlphanumeric() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read a sequence of alphanumeric characters starting from the current parser position and set the result as the current token.
nextLine() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read characters from the current parser position to the next new line sequence and set the result as the current token .
nextWithLineContinuation(char, int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read a string containing at most len characters from the stream and set it as the current token.
nextWithLineContinuation(char, IntPredicate) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read characters from the stream while the given predicate returns true and set the result as the current token.

O

org.apache.commons.geometry.io.core - package org.apache.commons.geometry.io.core
This package contains the core interfaces and classes for commons-geometry IO functionality.
org.apache.commons.geometry.io.core.input - package org.apache.commons.geometry.io.core.input
This package contains types representing input to IO operations.
org.apache.commons.geometry.io.core.internal - package org.apache.commons.geometry.io.core.internal
This package contains IO utilities intended for internal use only.
org.apache.commons.geometry.io.core.output - package org.apache.commons.geometry.io.core.output
This package contains types representing output targets for IO operations.
org.apache.commons.geometry.io.core.utils - package org.apache.commons.geometry.io.core.utils
This package contains public IO utilities.

P

parseError(String) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Create an exception indicating a parsing or syntax error.
parseError(String, Throwable) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Create an exception indicating a parsing or syntax error.
parseError(String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return an exception indicating an error occurring at the current parser position.
parseError(String, Throwable) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return an exception indicating an error occurring at the current parser position.
parseError(int, int, String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return an exception indicating an error during parsing.
parseError(int, int, String, Throwable) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return an exception indicating an error during parsing.
peek() - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Return the next character in the buffer without removing it.
peek(int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return a string containing containing at most len characters from the stream but without changing the parser position.
peek(IntPredicate) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read characters from the stream while the given predicate returns true but do not change the current token or advance the parser position.
peekChar() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the next character in the stream but do not advance the parser position.
peekString(int) - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Return a string from the buffer without removing it.
push(char) - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Push a character back onto the read buffer.
pushString(String) - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Push a string back onto the read buffer.

R

read(GeometryInput, GeometryFormat, Precision.DoubleEquivalence) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Return a BoundarySource containing all boundaries from the given input.
read(GeometryInput, Precision.DoubleEquivalence) - Method in interface org.apache.commons.geometry.io.core.BoundaryReadHandler
Return an object containing all boundaries read from input using the handler's supported data format.
read() - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Remove and return the next character in the buffer.
readChar() - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Read and return the next character in the stream and advance the parser position.
readString(int) - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Remove and return a string from the buffer.
registerReadHandler(R) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Register a read handler with the instance, replacing any handler previously registered for the argument's supported data format, as returned by BoundaryReadHandler.getFormat().
registerWriteHandler(W) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Register a write handler with the instance, replacing any handler previously registered for the argument's supported data format, as returned by BoundaryWriteHandler.getFormat().
requireReadHandler(GeometryInput, GeometryFormat) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the read handler matching the arguments, throwing an exception on failure.
requireWriteHandler(GeometryOutput, GeometryFormat) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Get the write handler matching the arguments, throwing an exception on failure.

S

setColumnNumber(int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Set the current column number.
setDoubleFormat(DoubleFunction<String>) - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Set the function used to format floating point output.
setLineNumber(int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Set the current line number.
setLineSeparator(String) - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Set the line separator.
setMaxStringLength(int) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Set the maximum length for strings returned by this instance.
SimpleTextParser - Class in org.apache.commons.geometry.io.core.internal
Class providing basic text parsing capabilities.
SimpleTextParser(Reader) - Constructor for class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Construct a new instance that reads characters from the given reader.
SimpleTextParser(CharReadBuffer) - Constructor for class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Construct a new instance that reads characters from the given character buffer.
skip(int) - Method in class org.apache.commons.geometry.io.core.internal.CharReadBuffer
Skip n characters from the stream.
StreamGeometryInput - Class in org.apache.commons.geometry.io.core.input
GeometryInput implementation that wraps an InputStream.
StreamGeometryInput(InputStream) - Constructor for class org.apache.commons.geometry.io.core.input.StreamGeometryInput
Construct a new instance that reads from the given input stream with no configured file name or charset.
StreamGeometryInput(InputStream, String) - Constructor for class org.apache.commons.geometry.io.core.input.StreamGeometryInput
Construct a new instance that reads from the given input stream with the configured file name but no charset.
StreamGeometryInput(InputStream, String, Charset) - Constructor for class org.apache.commons.geometry.io.core.input.StreamGeometryInput
Construct a new instance that reads from the given input stream with the configured file name and charset.
StreamGeometryOutput - Class in org.apache.commons.geometry.io.core.output
GeometryOutput implementation that wraps an OutputStream.
StreamGeometryOutput(OutputStream) - Constructor for class org.apache.commons.geometry.io.core.output.StreamGeometryOutput
Construct a new instance that writes to the given output stream with no configured file name or charset.
StreamGeometryOutput(OutputStream, String) - Constructor for class org.apache.commons.geometry.io.core.output.StreamGeometryOutput
Construct a new instance that writes to the given output stream with the configured file name but no charset.
StreamGeometryOutput(OutputStream, String, Charset) - Constructor for class org.apache.commons.geometry.io.core.output.StreamGeometryOutput
Construct a new instance that writes to the given output stream with the configured file name and charset.

T

tokenError(String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get an exception indicating an error during parsing at the current token position.
tokenError(String, Throwable) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get an exception indicating an error during parsing at the current token position.
toString() - Method in class org.apache.commons.geometry.io.core.AbstractGeometryIOMetadata
toString() - Method in class org.apache.commons.geometry.io.core.input.FileGeometryInput
toString() - Method in class org.apache.commons.geometry.io.core.input.UrlGeometryInput
toString() - Method in class org.apache.commons.geometry.io.core.output.FileGeometryOutput
tryApplyCloseable(IOFunction<C, T>, IOSupplier<? extends C>) - Static method in class org.apache.commons.geometry.io.core.internal.GeometryIOUtils
Pass a supplied Closeable instance to function and return the result.
tryChoose(String...) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that exactly matches the current token or -1 if no match is found.
tryChoose(List<String>) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that exactly matches the current token or -1 if no match is found.
tryChooseIgnoreCase(String...) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that matches the current token or -1 if no match is found.
tryChooseIgnoreCase(List<String>) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return the index of the argument that matches the current token or -1 if no match is found.
tryMatch(String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the current token is equal to the argument.
tryMatchIgnoreCase(String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Return true if the current token is equal to the argument.

U

unexpectedToken(String) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get an exception indicating that the current token was unexpected.
unexpectedToken(String, Throwable) - Method in class org.apache.commons.geometry.io.core.internal.SimpleTextParser
Get an exception indicating that the current token was unexpected.
unregisterReadHandler(R) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Unregister a previously registered read handler; does nothing if the argument is null or is not currently registered.
unregisterWriteHandler(W) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Unregister a previously registered write handler; does nothing if the argument is null or is not currently registered.
UrlGeometryInput - Class in org.apache.commons.geometry.io.core.input
GeometryInput implementation for reading content from a URL.
UrlGeometryInput(URL) - Constructor for class org.apache.commons.geometry.io.core.input.UrlGeometryInput
Construct a new instance for reading from the given URL.
UrlGeometryInput(URL, Charset) - Constructor for class org.apache.commons.geometry.io.core.input.UrlGeometryInput
Construct a new instance for reading from the given URL with the specified charset.

W

write(B, GeometryOutput, GeometryFormat) - Method in class org.apache.commons.geometry.io.core.BoundaryIOManager
Write all boundaries from src to the given output.
write(B, GeometryOutput) - Method in interface org.apache.commons.geometry.io.core.BoundaryWriteHandler
Write all boundaries from src to the given output, using the data format for the instance.
write(double) - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Write a double value formatted using the configured decimal format function.
write(int) - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Write an integer value.
write(char) - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Write a char value.
write(String) - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Write a string.
writeNewLine() - Method in class org.apache.commons.geometry.io.core.utils.AbstractTextFormatWriter
Write the configured line separator to the output.
A B C D F G H I M N O P R S T U W 
Skip navigation links

Copyright © 2016–2021 The Apache Software Foundation. All rights reserved.