Skip navigation links
A B C F G L M N O P R S 

A

ARG_DEFAULT_VALUE - Static variable in class org.fugerit.java.core.cli.ArgUtils
Default vaule for arguments withoug value
ARG_PARAM_FILE - Static variable in class org.fugerit.java.core.cli.ArgUtils
Param file argument If the param-file argument is set, its red as a property file and each entry is treated as an argument value.
ARG_PREFIX - Static variable in class org.fugerit.java.core.cli.ArgUtils
Prefix for all arguments
ArgUtils - Class in org.fugerit.java.core.cli
Simple arg parsing utility.
ArgUtils() - Constructor for class org.fugerit.java.core.cli.ArgUtils
 

B

BUFFERSIZE_DEFAULT - Static variable in class org.fugerit.java.core.io.StreamIO
Default size buffer.
BUFFERSIZE_HIGH - Static variable in class org.fugerit.java.core.io.StreamIO
Big size buffer.
BUFFERSIZE_LOW - Static variable in class org.fugerit.java.core.io.StreamIO
Small size buffer.
BUFFERSIZE_MEDIUM - Static variable in class org.fugerit.java.core.io.StreamIO
Medium size buffer.
BUFFERSIZE_NOBUFFER - Static variable in class org.fugerit.java.core.io.StreamIO
No buffer at all (size = 1)

C

checkCloseInput(int) - Static method in class org.fugerit.java.core.io.helper.StreamHelper
Check if the source should be closed.
checkCloseOutput(int) - Static method in class org.fugerit.java.core.io.helper.StreamHelper
Check if the destination should be closed.
ClassHelper - Class in org.fugerit.java.core.lang.helpers
This class provides API for instantiating new classes.
ClassHelper() - Constructor for class org.fugerit.java.core.lang.helpers.ClassHelper
 
compareInt(Integer, Integer...) - Static method in class org.fugerit.java.core.lang.compare.ComparePrimitiveFacade
Check if a target value is among one or more values.
ComparePrimitiveFacade - Class in org.fugerit.java.core.lang.compare
This class provides utilities for comparing primitive types.
ComparePrimitiveFacade() - Constructor for class org.fugerit.java.core.lang.compare.ComparePrimitiveFacade
 

F

fill(Properties, Properties) - Static method in class org.fugerit.java.core.util.PropsIO
Copy all entries from a java.util.Properties to another.

G

getArgs(String[], boolean) - Static method in class org.fugerit.java.core.cli.ArgUtils
Parse an argument list as a property object.
getArgs(String[]) - Static method in class org.fugerit.java.core.cli.ArgUtils
Parse an argument list as a property object.
getArgString(String) - Static method in class org.fugerit.java.core.cli.ArgUtils
Create an argument string, ARG_PREFIX+argName.
getDefaultClassLoader() - Static method in class org.fugerit.java.core.lang.helpers.ClassHelper
Return default class loader to instantiate a new class.

L

loadFromClassLoader(String) - Static method in class org.fugerit.java.core.util.PropsIO
Load a java.util.Properties from the DefaultClassLoader.
loadFromFile(String) - Static method in class org.fugerit.java.core.util.PropsIO
Load a java.util.Properties from a File.
loadFromFile(File) - Static method in class org.fugerit.java.core.util.PropsIO
Load a java.util.Properties from a File.
loadFromStream(InputStream) - Static method in class org.fugerit.java.core.util.PropsIO
Load a java.util.Properties from a Stream.
loadFromURL(String) - Static method in class org.fugerit.java.core.util.PropsIO
Load a java.util.Properties from an URL.
loadFromURL(URL) - Static method in class org.fugerit.java.core.util.PropsIO
Load a java.util.Properties from an URL.

M

MODE_CLOSE_BOTH - Static variable in class org.fugerit.java.core.io.StreamIO
Invoke close() method on both source and destination at the end of operation.
MODE_CLOSE_IN_ONLY - Static variable in class org.fugerit.java.core.io.StreamIO
Invoke close() method on ource only at the end of operation.
MODE_CLOSE_NONE - Static variable in class org.fugerit.java.core.io.StreamIO
Don't invoke close() method on source and destination at the end of operation.
MODE_CLOSE_OUT_ONLY - Static variable in class org.fugerit.java.core.io.StreamIO
Invoke close() method on destination only at the end of operation.

N

newInstance(String) - Static method in class org.fugerit.java.core.lang.helpers.ClassHelper
Create a new instance of the given type.

O

org.fugerit.java.core.cli - package org.fugerit.java.core.cli
Package containing utilities for handling collections and similars.
org.fugerit.java.core.io - package org.fugerit.java.core.io
This package provides general purpose I/O API.
org.fugerit.java.core.io.helper - package org.fugerit.java.core.io.helper
Package containing I/O helpers.
org.fugerit.java.core.lang.compare - package org.fugerit.java.core.lang.compare
Package containing utilities for comparations.
org.fugerit.java.core.lang.helpers - package org.fugerit.java.core.lang.helpers
Package containing utilities regarding basic java objects.
org.fugerit.java.core.util - package org.fugerit.java.core.util
Package containints API for command line tool

P

pipe(InputStream, OutputStream, int, int) - Static method in class org.fugerit.java.core.io.helper.StreamHelper
Pipe the content of a java.io.InputStream into a java.io.OutputStream.
pipe(Reader, Writer, int, int) - Static method in class org.fugerit.java.core.io.helper.StreamHelper
Pipe the content of a java.io.Reader into a java.io.Writer.
pipe(InputStream, OutputStream) - Static method in class org.fugerit.java.core.io.helper.StreamHelper
Pipe the content of a java.io.InputStream into a java.io.OutputStream.
pipe(Reader, Writer) - Static method in class org.fugerit.java.core.io.helper.StreamHelper
Pipe the content of a java.io.Reader into a java.io.Writer.
pipeChar(Reader, Writer, int) - Static method in class org.fugerit.java.core.io.StreamIO
Pipe the content of a java.io.InputStream into a java.io.OutputStream.
pipeStream(InputStream, OutputStream, int) - Static method in class org.fugerit.java.core.io.StreamIO
Pipe the content of a java.io.Reader into a java.io.Writer.
PropsIO - Class in org.fugerit.java.core.util
Utility for handling java.util.Property objects.
PropsIO() - Constructor for class org.fugerit.java.core.util.PropsIO
 

R

readBytes(InputStream) - Static method in class org.fugerit.java.core.io.StreamIO
Read an InputStream as a byte array.
readString(InputStream) - Static method in class org.fugerit.java.core.io.StreamIO
Read an InputStream as a String.
readString(Reader) - Static method in class org.fugerit.java.core.io.StreamIO
Read an Reader as a String.

S

StreamHelper - Class in org.fugerit.java.core.io.helper
This class provides primitives for piping streams and readers/writers content.
StreamHelper() - Constructor for class org.fugerit.java.core.io.helper.StreamHelper
 
StreamIO - Class in org.fugerit.java.core.io
StreamIO provides API for managing stream, reader an writer.
StreamIO() - Constructor for class org.fugerit.java.core.io.StreamIO
 
A B C F G L M N O P R S 
Skip navigation links

Copyright © 2017 Fugerit. All rights reserved.