Index

A B C D E F G H I J K L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

C

checkAccessiblePath(Path, boolean, boolean) - Static method in class de.cuioss.tools.io.MorePaths
Checks whether the given Path denotes an existing read and writable directory or file.
checkArgument(boolean) - Static method in class de.cuioss.tools.base.Preconditions
Ensures the truth of an expression involving one or more parameters to the calling method.
checkArgument(boolean, String) - Static method in class de.cuioss.tools.base.Preconditions
Ensures the truth of an expression involving one or more parameters to the calling method.
checkArgument(boolean, String, Object...) - Static method in class de.cuioss.tools.base.Preconditions
Ensures the truth of an expression involving one or more parameters to the calling method.
checkCompareTo(String, String) - Method in enum class de.cuioss.tools.io.IOCase
Compares two strings using the case-sensitivity rule.
checkEndsWith(String, String) - Method in enum class de.cuioss.tools.io.IOCase
Checks if one string ends with another using the case-sensitivity rule.
checkEquals(String, String) - Method in enum class de.cuioss.tools.io.IOCase
Compares two strings using the case-sensitivity rule.
checkExecutablePath(Path, boolean) - Static method in class de.cuioss.tools.io.MorePaths
Checks whether the given Path denotes an existing executable file.
checkIndexOf(String, int, String) - Method in enum class de.cuioss.tools.io.IOCase
Checks if one string contains another starting at a specific index using the case-sensitivity rule.
checkPathName(String) - Static method in class de.cuioss.tools.io.FileSystemLoader
Checks and modifies a given pathName
checkReadablePath(Path, boolean, boolean) - Static method in class de.cuioss.tools.io.MorePaths
Checks whether the given Path denotes an existing readable directory or file.
checkRegionMatches(String, int, String) - Method in enum class de.cuioss.tools.io.IOCase
Checks if one string contains another at a specific index using the case-sensitivity rule.
checkStartsWith(String, String) - Method in enum class de.cuioss.tools.io.IOCase
Checks if one string starts with another using the case-sensitivity rule.
checkState(boolean) - Static method in class de.cuioss.tools.base.Preconditions
Ensures the truth of an expression involving the state of the calling instance, but not involving any parameters to the calling method.
checkState(boolean, String) - Static method in class de.cuioss.tools.base.Preconditions
Ensures the truth of an expression involving the state of the calling instance, but not involving any parameters to the calling method.
checkState(boolean, String, Object...) - Static method in class de.cuioss.tools.base.Preconditions
Ensures the truth of an expression involving one or more parameters to the calling method.
checkWhetherParameterIsAssignable(Class<?>, Class<?>) - Static method in class de.cuioss.tools.reflect.MoreReflection
 
CLASSPATH - Enum constant in enum class de.cuioss.tools.io.FileTypePrefix
"classpath:"
ClassPathLoader - Class in de.cuioss.tools.io
Variant of FileLoader that loads files from the classpath.
ClassPathLoader(String) - Constructor for class de.cuioss.tools.io.ClassPathLoader
 
clear() - Method in class de.cuioss.tools.collect.CollectionBuilder
Clears the elements in the collector
clear() - Method in class de.cuioss.tools.collect.MapBuilder
Clears the contained collector
coalesce(Predicate<String>, String...) - Static method in class de.cuioss.tools.string.MoreStrings
 
CollectionBuilder<E> - Class in de.cuioss.tools.collect
Overview
CollectionBuilder() - Constructor for class de.cuioss.tools.collect.CollectionBuilder
Default Constructor initializing the collector with an ArrayList
CollectionBuilder(Collection<E>) - Constructor for class de.cuioss.tools.collect.CollectionBuilder
Constructor for CollectionBuilder.
CollectionLiterals - Class in de.cuioss.tools.collect
Overview
CollectionLiterals() - Constructor for class de.cuioss.tools.collect.CollectionLiterals
 
compareTo(UrlParameter) - Method in class de.cuioss.tools.net.UrlParameter
 
computePropertyNameFromMethodName(String) - Static method in class de.cuioss.tools.reflect.MoreReflection
Helper method that extract the property-name from a given accessor-method name.
concat(String, String) - Static method in class de.cuioss.tools.io.FilenameUtils
Concatenates a filename to a base path using normal command line style rules.
ConcurrentTools - Class in de.cuioss.tools.concurrent
Provides some helper-methods taken from com.google.common.util.concurrent package
ConcurrentTools() - Constructor for class de.cuioss.tools.concurrent.ConcurrentTools
 
contains(Object) - Method in class de.cuioss.tools.collect.CollectionBuilder
contains.
containsKey(Object) - Method in class de.cuioss.tools.collect.MapBuilder
Returns true if this map contains a mapping for the specified key.
containsKey(Map<?, ?>, Object...) - Static method in class de.cuioss.tools.collect.MoreCollections
Checks whether the given map contains at least one of the given keys to be checked.
containsValue(Object) - Method in class de.cuioss.tools.collect.MapBuilder
Returns true if this map maps one or more keys to the specified value.
contentEquals(InputStream, InputStream) - Static method in class de.cuioss.tools.io.IOStreams
Compares the contents of two Streams to determine if they are equal or not.
contentEquals(Reader, Reader) - Static method in class de.cuioss.tools.io.IOStreams
Compares the contents of two Readers to determine if they are equal or not.
contentEquals(Path, Path) - Static method in class de.cuioss.tools.io.MorePaths
Compares the contents of two files to determine if they are equal or not.
copy(InputStream, OutputStream) - Static method in class de.cuioss.tools.io.IOStreams
Copies bytes from an InputStream to an OutputStream.
copy(InputStream, OutputStream, int) - Static method in class de.cuioss.tools.io.IOStreams
Copies bytes from an InputStream to an OutputStream using an internal buffer of the given size.
copy(InputStream, Writer, String) - Static method in class de.cuioss.tools.io.IOStreams
Copies bytes from an InputStream to chars on a Writer using the specified character encoding.
copy(InputStream, Writer, Charset) - Static method in class de.cuioss.tools.io.IOStreams
Copies bytes from an InputStream to chars on a Writer using the specified character encoding.
copy(Reader, OutputStream, String) - Static method in class de.cuioss.tools.io.IOStreams
Copies chars from a Reader to bytes on an OutputStream using the specified character encoding, and calling flush.
copy(Reader, OutputStream, Charset) - Static method in class de.cuioss.tools.io.IOStreams
Copies chars from a Reader to bytes on an OutputStream using the specified character encoding, and calling flush.
copy(Reader, Writer) - Static method in class de.cuioss.tools.io.IOStreams
Copies chars from a Reader to a Writer.
copyFileToTemp(FileLoader, boolean) - Static method in class de.cuioss.tools.io.FileLoaderUtility
Helper class that copies the content of a FileLoader to the temp-folder and references it
copyFrom(E) - Static method in class de.cuioss.tools.collect.CollectionBuilder
Creates an Instance of CollectionBuilder by copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined within CollectionBuilder.addNullValues(boolean)
copyFrom(E...) - Static method in class de.cuioss.tools.collect.CollectionBuilder
Creates an Instance of CollectionBuilder by copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined within CollectionBuilder.addNullValues(boolean)
copyFrom(Iterable<? extends E>) - Static method in class de.cuioss.tools.collect.CollectionBuilder
Creates an Instance of CollectionBuilder by copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined within CollectionBuilder.addNullValues(boolean)
copyFrom(Collection<? extends E>) - Static method in class de.cuioss.tools.collect.CollectionBuilder
Creates an Instance of CollectionBuilder by copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined within CollectionBuilder.addNullValues(boolean)
copyFrom(Iterator<? extends E>) - Static method in class de.cuioss.tools.collect.CollectionBuilder
Creates an Instance of CollectionBuilder by copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined within CollectionBuilder.addNullValues(boolean)
copyFrom(Map<K, V>) - Static method in class de.cuioss.tools.collect.MapBuilder
copyFrom.
copyFrom(Stream<? extends E>) - Static method in class de.cuioss.tools.collect.CollectionBuilder
Creates an Instance of CollectionBuilder by copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined within CollectionBuilder.addNullValues(boolean)
copyLarge(InputStream, OutputStream) - Static method in class de.cuioss.tools.io.IOStreams
Copies bytes from a large (over 2GB) InputStream to an OutputStream.
copyLarge(InputStream, OutputStream, byte[]) - Static method in class de.cuioss.tools.io.IOStreams
Copies bytes from a large (over 2GB) InputStream to an OutputStream.
copyLarge(InputStream, OutputStream, long, long) - Static method in class de.cuioss.tools.io.IOStreams
Copies some or all bytes from a large (over 2GB) InputStream to an OutputStream, optionally skipping input bytes.
copyLarge(InputStream, OutputStream, long, long, byte[]) - Static method in class de.cuioss.tools.io.IOStreams
Copies some or all bytes from a large (over 2GB) InputStream to an OutputStream, optionally skipping input bytes.
copyLarge(Reader, Writer) - Static method in class de.cuioss.tools.io.IOStreams
Copies chars from a large (over 2GB) Reader to a Writer.
copyLarge(Reader, Writer, char[]) - Static method in class de.cuioss.tools.io.IOStreams
Copies chars from a large (over 2GB) Reader to a Writer.
copyLarge(Reader, Writer, long, long) - Static method in class de.cuioss.tools.io.IOStreams
Copies some or all chars from a large (over 2GB) InputStream to an OutputStream, optionally skipping input chars.
copyLarge(Reader, Writer, long, long, char[]) - Static method in class de.cuioss.tools.io.IOStreams
Copies some or all chars from a large (over 2GB) InputStream to an OutputStream, optionally skipping input chars.
copyToTempLocation(Path) - Static method in class de.cuioss.tools.io.MorePaths
Creates a temp-copy of the given file, identified by the given path.
countMatches(CharSequence, CharSequence) - Static method in class de.cuioss.tools.string.MoreStrings
Counts how many times the substring appears in the larger string.
createFormatter(String, Lexer<F>) - Static method in class de.cuioss.tools.formatting.template.TemplateFormatterImpl
 
createFormatter(String, Lexer<F>, boolean) - Static method in class de.cuioss.tools.formatting.template.TemplateFormatterImpl
 
createFormatter(String, F) - Static method in class de.cuioss.tools.formatting.template.TemplateFormatterImpl
 
createFormatter(String, F, boolean) - Static method in class de.cuioss.tools.formatting.template.TemplateFormatterImpl
 
createFormatter(String, Class<F>) - Static method in class de.cuioss.tools.formatting.template.TemplateFormatterImpl
The created TemplateFormatter provide only usage of simple expression language with squared brackets.
createFormatter(String, Class<F>, boolean) - Static method in class de.cuioss.tools.formatting.template.TemplateFormatterImpl
The created TemplateFormatter provide only usage of simple expression language with squared brackets.
createNameValueString() - Method in class de.cuioss.tools.net.UrlParameter
Create a String representation of a name value pair, saying name=value
createNameValueString(boolean) - Method in class de.cuioss.tools.net.UrlParameter
 
createParameterMap(List<UrlParameter>) - Static method in class de.cuioss.tools.net.UrlParameter
Create a parameterMap for a given list of UrlParameter
createParameterString(boolean, UrlParameter...) - Static method in class de.cuioss.tools.net.UrlParameter
Create a String-representation of the URL-Parameter
createParameterString(UrlParameter...) - Static method in class de.cuioss.tools.net.UrlParameter
Creates a parameter String for a given number of UrlParameter.
createStarted() - Static method in class de.cuioss.tools.concurrent.StopWatch
 
createStarted(Ticker) - Static method in class de.cuioss.tools.concurrent.StopWatch
 
createUnstarted() - Static method in class de.cuioss.tools.concurrent.StopWatch
 
createUnstarted(Ticker) - Static method in class de.cuioss.tools.concurrent.StopWatch
 
CuiLogger - Class in de.cuioss.tools.logging
Wrapper around java-util Logger that simplifies its usage.
CuiLogger(Class<?>) - Constructor for class de.cuioss.tools.logging.CuiLogger
 
CuiLogger(String) - Constructor for class de.cuioss.tools.logging.CuiLogger
 
CuiLoggerFactory - Class in de.cuioss.tools.logging
Class provide factory method for CuiLogger instance
CuiLoggerFactory() - Constructor for class de.cuioss.tools.logging.CuiLoggerFactory
 
A B C D E F G H I J K L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form