| Modifier and Type | Method and Description |
|---|---|
static byte[] |
Base64.decode(byte[] source)
Low-level access to decoding ASCII characters in the form of a byte array.
|
static byte[] |
Base64.decode(byte[] source,
int options)
Low-level access to decoding ASCII characters in the form of a byte array.
|
static byte[] |
Base64.decode(byte[] source,
int off,
int len,
int options)
Low-level access to decoding ASCII characters in the form of a byte array.
|
static byte[] |
Base64.decode(String s)
Decodes data from Base64 notation, automatically detecting gzip-compressed
data and decompressing it.
|
static byte[] |
Base64.decode(String s,
int options)
Decodes data from Base64 notation, automatically detecting gzip-compressed
data and decompressing it.
|
static byte[] |
Base64.decodeFromFile(String filename)
Convenience method for reading a base64-encoded file and decoding it.
|
static byte[] |
Base64.encodeBytesToBytes(byte[] source)
Similar to
Base64.encodeBytes(byte[]) but returns a byte array instead of
instantiating a String. |
static byte[] |
Base64.encodeBytesToBytes(byte[] source,
int off,
int len,
int options)
Similar to
Base64.encodeBytes(byte[], int, int, int) but returns a byte
array instead of instantiating a String. |
static byte[] |
Base64.safeDecode(byte[] aEncodedBytes)
Decode the byte array.
|
static byte[] |
Base64.safeDecode(String sEncoded)
Decode the string with the default encoding (US-ASCII is the preferred
one).
|
static byte[] |
Base64.safeEncodeBytesToBytes(byte[] aDecoded) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<KEYTYPE,VALUETYPE> |
AbstractCache.createCache()
Create a new cache map.
|
| Modifier and Type | Method and Description |
|---|---|
List<CALLBACKTYPE> |
ICallbackList.getAllCallbacks() |
List<CALLBACKTYPE> |
CallbackList.getAllCallbacks() |
| Modifier and Type | Method and Description |
|---|---|
List<EXTYPE> |
CollectingExceptionListCallback.getAllExceptions() |
| Modifier and Type | Method and Description |
|---|---|
List<AbstractChangeLogEntry> |
ChangeLog.getAllBaseEntries() |
List<ChangeLogEntry> |
ChangeLog.getAllEntries() |
List<ChangeLogEntry> |
ChangeLog.getAllEntriesOfCategory(EChangeLogCategory eCategory)
Get all change log entries, that match the specified category.
|
List<String> |
ChangeLogEntry.getAllIssues() |
List<ChangeLogRelease> |
ChangeLog.getAllReleases() |
IMultilingualText |
ChangeLogEntry.getAllTexts() |
Date |
AbstractChangeLogEntry.getDate() |
static Map<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs() |
static Map<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs(ClassLoader aClassLoader) |
static Map<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs(IChangeLogSerializerCallback aErrorCallback) |
static Map<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs(IChangeLogSerializerCallback aErrorCallback,
ClassLoader aClassLoader) |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
EUnicodeBOM.getAllBytes() |
static byte[] |
CharsetManager.getAsBytes(String sText,
Charset aCharset) |
byte[] |
StringEncoder.getAsNewArray(String sSource)
Returns a new byte array containing the UTF-8 version of source.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
URLCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
RunLengthCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
RFC1522QCodec.getDecoded(byte[] aBuffer) |
byte[] |
RFC1522BCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
QuotedPrintableCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
LZWCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
IByteArrayDecoder.getDecoded(byte[] aEncodedBuffer)
Decode a byte array.
|
byte[] |
FlateCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
DCTCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
Base64Codec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
ASCIIHexCodec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
ASCII85Codec.getDecoded(byte[] aEncodedBuffer) |
byte[] |
IByteArrayDecoder.getDecoded(String sEncoded,
Charset aCharset)
Decode the passed string.
|
byte[] |
AbstractByteArrayDecoder.getDecoded(String sEncoded,
Charset aCharset) |
static byte[] |
ASCII85Codec.getDecodedASCII85(byte[] aEncodedBuffer) |
static byte[] |
ASCIIHexCodec.getDecodedASCIIHex(byte[] aEncodedBuffer) |
static byte[] |
DCTCodec.getDecodedDCT(byte[] aEncodedBuffer) |
static byte[] |
FlateCodec.getDecodedFlate(byte[] aEncodedBuffer) |
static byte[] |
LZWCodec.getDecodedLZW(byte[] aEncodedBuffer) |
static byte[] |
QuotedPrintableCodec.getDecodedQuotedPrintable(byte[] aEncodedBuffer) |
static byte[] |
QuotedPrintableCodec.getDecodedQuotedPrintable(String sEncodedText) |
static byte[] |
RunLengthCodec.getDecodedRunLength(byte[] aEncodedBuffer) |
static byte[] |
URLCodec.getDecodedURL(byte[] aEncodedBuffer) |
static byte[] |
URLCodec.getDecodedURL(String sEncodedURL) |
static BitSet |
URLCodec.getDefaultBitSet() |
static BitSet |
QuotedPrintableCodec.getDefaultBitSet() |
byte[] |
URLCodec.getEncoded(byte[] aDecodedBuffer) |
byte[] |
RFC1522QCodec.getEncoded(byte[] aBuffer) |
byte[] |
RFC1522BCodec.getEncoded(byte[] aDecodedBuffer) |
byte[] |
QuotedPrintableCodec.getEncoded(byte[] aDecodedBuffer) |
byte[] |
LZWCodec.getEncoded(byte[] aBuffer) |
byte[] |
IByteArrayEncoder.getEncoded(byte[] aDecodedBuffer)
Encode a byte array.
|
byte[] |
FlateCodec.getEncoded(byte[] aBuffer) |
byte[] |
Base64Codec.getEncoded(byte[] aDecodedBuffer) |
byte[] |
IByteArrayEncoder.getEncoded(String sDecoded,
Charset aCharset)
Encode the passed string.
|
byte[] |
AbstractByteArrayCodec.getEncoded(String sDecoded,
Charset aCharset) |
static byte[] |
FlateCodec.getEncodedFlate(byte[] aBuffer) |
static byte[] |
LZWCodec.getEncodedLZW(byte[] aBuffer) |
static byte[] |
QuotedPrintableCodec.getEncodedQuotedPrintable(BitSet aPrintableBitSet,
byte[] aDecodedBuffer) |
static byte[] |
QuotedPrintableCodec.getEncodedQuotedPrintable(byte[] aDecodedBuffer) |
static byte[] |
URLCodec.getEncodedURL(BitSet aPrintableBitSet,
byte[] aDecodedBuffer) |
static byte[] |
URLCodec.getEncodedURL(byte[] aDecodedBuffer) |
| Modifier and Type | Method and Description |
|---|---|
static boolean[] |
ArrayHelper.getAllExcept(boolean[] aArray,
boolean... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static byte[] |
ArrayHelper.getAllExcept(byte[] aArray,
byte... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static char[] |
ArrayHelper.getAllExcept(char[] aArray,
char... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static double[] |
ArrayHelper.getAllExcept(double[] aArray,
double... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static <ELEMENTTYPE> |
ArrayHelper.getAllExcept(ELEMENTTYPE[] aArray,
ELEMENTTYPE... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static float[] |
ArrayHelper.getAllExcept(float[] aArray,
float... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static int[] |
ArrayHelper.getAllExcept(int[] aArray,
int... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static long[] |
ArrayHelper.getAllExcept(long[] aArray,
long... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static short[] |
ArrayHelper.getAllExcept(short[] aArray,
short... aElementsToRemove)
Get an array that contains all elements, except for the passed elements.
|
static boolean[] |
ArrayHelper.getAllExceptFirst(boolean... aArray)
Get an array that contains all elements, except for the first element.
|
static boolean[] |
ArrayHelper.getAllExceptFirst(boolean[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static byte[] |
ArrayHelper.getAllExceptFirst(byte... aArray)
Get an array that contains all elements, except for the first element.
|
static byte[] |
ArrayHelper.getAllExceptFirst(byte[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static char[] |
ArrayHelper.getAllExceptFirst(char... aArray)
Get an array that contains all elements, except for the first element.
|
static char[] |
ArrayHelper.getAllExceptFirst(char[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static double[] |
ArrayHelper.getAllExceptFirst(double... aArray)
Get an array that contains all elements, except for the first element.
|
static double[] |
ArrayHelper.getAllExceptFirst(double[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static <ELEMENTTYPE> |
ArrayHelper.getAllExceptFirst(ELEMENTTYPE... aArray)
Get an array that contains all elements, except for the first element.
|
static <ELEMENTTYPE> |
ArrayHelper.getAllExceptFirst(ELEMENTTYPE[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static float[] |
ArrayHelper.getAllExceptFirst(float... aArray)
Get an array that contains all elements, except for the first element.
|
static float[] |
ArrayHelper.getAllExceptFirst(float[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static int[] |
ArrayHelper.getAllExceptFirst(int... aArray)
Get an array that contains all elements, except for the first element.
|
static int[] |
ArrayHelper.getAllExceptFirst(int[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static long[] |
ArrayHelper.getAllExceptFirst(long... aArray)
Get an array that contains all elements, except for the first element.
|
static long[] |
ArrayHelper.getAllExceptFirst(long[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static short[] |
ArrayHelper.getAllExceptFirst(short... aArray)
Get an array that contains all elements, except for the first element.
|
static short[] |
ArrayHelper.getAllExceptFirst(short[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the first n
elements.
|
static boolean[] |
ArrayHelper.getAllExceptLast(boolean... aArray)
Get an array that contains all elements, except for the last element.
|
static boolean[] |
ArrayHelper.getAllExceptLast(boolean[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static byte[] |
ArrayHelper.getAllExceptLast(byte... aArray)
Get an array that contains all elements, except for the last element.
|
static byte[] |
ArrayHelper.getAllExceptLast(byte[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static char[] |
ArrayHelper.getAllExceptLast(char... aArray)
Get an array that contains all elements, except for the last element.
|
static char[] |
ArrayHelper.getAllExceptLast(char[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static double[] |
ArrayHelper.getAllExceptLast(double... aArray)
Get an array that contains all elements, except for the last element.
|
static double[] |
ArrayHelper.getAllExceptLast(double[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static <ELEMENTTYPE> |
ArrayHelper.getAllExceptLast(ELEMENTTYPE... aArray)
Get an array that contains all elements, except for the last element.
|
static <ELEMENTTYPE> |
ArrayHelper.getAllExceptLast(ELEMENTTYPE[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static float[] |
ArrayHelper.getAllExceptLast(float... aArray)
Get an array that contains all elements, except for the last element.
|
static float[] |
ArrayHelper.getAllExceptLast(float[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static int[] |
ArrayHelper.getAllExceptLast(int... aArray)
Get an array that contains all elements, except for the last element.
|
static int[] |
ArrayHelper.getAllExceptLast(int[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static long[] |
ArrayHelper.getAllExceptLast(long... aArray)
Get an array that contains all elements, except for the last element.
|
static long[] |
ArrayHelper.getAllExceptLast(long[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static short[] |
ArrayHelper.getAllExceptLast(short... aArray)
Get an array that contains all elements, except for the last element.
|
static short[] |
ArrayHelper.getAllExceptLast(short[] aArray,
int nElementsToSkip)
Get an array that contains all elements, except for the last n
elements.
|
static Object[] |
ArrayHelper.getAsObjectArray(Collection<?> aCollection)
Get the passed collection as an array of Object.
|
static <KEY,VALUE> |
CollectionHelper.getCombinedMap(Map<KEY,VALUE> aMap1,
Map<KEY,VALUE> aMap2)
Create a map that contains the combination of the other 2 maps.
|
static boolean[] |
ArrayHelper.getConcatenated(boolean[] aHeadArray,
boolean... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static boolean[] |
ArrayHelper.getConcatenated(boolean[] aHeadArray,
boolean aTail)
Get a new array that combines the passed array and the tail element.
|
static boolean[] |
ArrayHelper.getConcatenated(boolean aHead,
boolean... aTailArray)
Get a new array that combines the passed head element and the array.
|
static byte[] |
ArrayHelper.getConcatenated(byte[] aHeadArray,
byte... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static byte[] |
ArrayHelper.getConcatenated(byte[] aHeadArray,
byte aTail)
Get a new array that combines the passed array and the tail element.
|
static byte[] |
ArrayHelper.getConcatenated(byte aHead,
byte... aTailArray)
Get a new array that combines the passed head element and the array.
|
static char[][] |
ArrayHelper.getConcatenated(char[][] aHeadArray,
char[]... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static char[] |
ArrayHelper.getConcatenated(char[] aHeadArray,
char... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static char[] |
ArrayHelper.getConcatenated(char[] aHeadArray,
char aTail)
Get a new array that combines the passed array and the tail element.
|
static char[] |
ArrayHelper.getConcatenated(char aHead,
char... aTailArray)
Get a new array that combines the passed head element and the array.
|
static double[] |
ArrayHelper.getConcatenated(double[] aHeadArray,
double... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static double[] |
ArrayHelper.getConcatenated(double[] aHeadArray,
double aTail)
Get a new array that combines the passed array and the tail element.
|
static double[] |
ArrayHelper.getConcatenated(double aHead,
double... aTailArray)
Get a new array that combines the passed head element and the array.
|
static <ELEMENTTYPE> |
ArrayHelper.getConcatenated(ELEMENTTYPE[] aHeadArray,
ELEMENTTYPE[] aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static <ELEMENTTYPE> |
ArrayHelper.getConcatenated(ELEMENTTYPE[] aHeadArray,
ELEMENTTYPE aTail,
Class<ELEMENTTYPE> aClass)
Get a new array that combines the passed array and the tail element.
|
static <ELEMENTTYPE> |
ArrayHelper.getConcatenated(ELEMENTTYPE aHead,
ELEMENTTYPE[] aTailArray,
Class<ELEMENTTYPE> aClass)
Get a new array that combines the passed head and the array.
|
static float[] |
ArrayHelper.getConcatenated(float[] aHeadArray,
float... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static float[] |
ArrayHelper.getConcatenated(float[] aHeadArray,
float aTail)
Get a new array that combines the passed array and the tail element.
|
static float[] |
ArrayHelper.getConcatenated(float aHead,
float... aTailArray)
Get a new array that combines the passed head element and the array.
|
static int[] |
ArrayHelper.getConcatenated(int[] aHeadArray,
int... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static int[] |
ArrayHelper.getConcatenated(int[] aHeadArray,
int aTail)
Get a new array that combines the passed array and the tail element.
|
static int[] |
ArrayHelper.getConcatenated(int aHead,
int... aTailArray)
Get a new array that combines the passed head element and the array.
|
static long[] |
ArrayHelper.getConcatenated(long[] aHeadArray,
long... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static long[] |
ArrayHelper.getConcatenated(long[] aHeadArray,
long aTail)
Get a new array that combines the passed array and the tail element.
|
static long[] |
ArrayHelper.getConcatenated(long aHead,
long... aTailArray)
Get a new array that combines the passed head element and the array.
|
static short[] |
ArrayHelper.getConcatenated(short[] aHeadArray,
short... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static short[] |
ArrayHelper.getConcatenated(short[] aHeadArray,
short aTail)
Get a new array that combines the passed array and the tail element.
|
static short[] |
ArrayHelper.getConcatenated(short aHead,
short... aTailArray)
Get a new array that combines the passed head element and the array.
|
static String[] |
ArrayHelper.getConcatenated(String[] aHeadArray,
String... aTailArray)
Get a new array that combines the passed two arrays, maintaining the order.
|
static String[] |
ArrayHelper.getConcatenated(String[] aHeadArray,
String aTail)
Get a new array that combines the passed array and the tail element.
|
static String[] |
ArrayHelper.getConcatenated(String aHead,
String... aTailArray)
Get a new array that combines the passed head element and the array.
|
static <ELEMENTTYPE> |
CollectionHelper.getConcatenatedList(Collection<? extends ELEMENTTYPE> aCollection1,
Collection<? extends ELEMENTTYPE> aCollection2) |
static <ELEMENTTYPE> |
CollectionHelper.getConcatenatedList(Collection<? extends ELEMENTTYPE> aCont1,
ELEMENTTYPE... aCont2) |
static <ELEMENTTYPE> |
CollectionHelper.getConcatenatedList(ELEMENTTYPE[] aCont1,
Collection<? extends ELEMENTTYPE> aCont2) |
static <ELEMENTTYPE> |
CollectionHelper.getConcatenatedSet(Collection<? extends ELEMENTTYPE> aCont1,
Collection<? extends ELEMENTTYPE> aCont2) |
static <ELEMENTTYPE> |
CollectionHelper.getConcatenatedSet(Collection<? extends ELEMENTTYPE> aCont1,
ELEMENTTYPE... aCont2) |
static <ELEMENTTYPE> |
CollectionHelper.getConcatenatedSet(ELEMENTTYPE[] aCont1,
Collection<? extends ELEMENTTYPE> aCont2) |
static boolean[] |
ArrayHelper.getCopy(boolean... aArray)
Get a 1:1 copy of the passed array.
|
static boolean[] |
ArrayHelper.getCopy(boolean[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static boolean[] |
ArrayHelper.getCopy(boolean[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static byte[] |
ArrayHelper.getCopy(byte... aArray)
Get a 1:1 copy of the passed array.
|
static byte[] |
ArrayHelper.getCopy(byte[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static byte[] |
ArrayHelper.getCopy(byte[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static char[] |
ArrayHelper.getCopy(char... aArray)
Get a 1:1 copy of the passed array.
|
static char[] |
ArrayHelper.getCopy(char[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static char[] |
ArrayHelper.getCopy(char[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static double[] |
ArrayHelper.getCopy(double... aArray)
Get a 1:1 copy of the passed array.
|
static double[] |
ArrayHelper.getCopy(double[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static double[] |
ArrayHelper.getCopy(double[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static <ELEMENTTYPE> |
ArrayHelper.getCopy(ELEMENTTYPE... aArray)
Get a 1:1 copy of the passed array.
|
static <ELEMENTTYPE> |
ArrayHelper.getCopy(ELEMENTTYPE[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static <ELEMENTTYPE> |
ArrayHelper.getCopy(ELEMENTTYPE[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static float[] |
ArrayHelper.getCopy(float... aArray)
Get a 1:1 copy of the passed array.
|
static float[] |
ArrayHelper.getCopy(float[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static float[] |
ArrayHelper.getCopy(float[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static int[] |
ArrayHelper.getCopy(int... aArray)
Get a 1:1 copy of the passed array.
|
static int[] |
ArrayHelper.getCopy(int[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static int[] |
ArrayHelper.getCopy(int[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array.
|
static long[] |
ArrayHelper.getCopy(long... aArray) |
static long[] |
ArrayHelper.getCopy(long[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static long[] |
ArrayHelper.getCopy(long[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static short[] |
ArrayHelper.getCopy(short... aArray)
Get a 1:1 copy of the passed array.
|
static short[] |
ArrayHelper.getCopy(short[] aArray,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements.
|
static short[] |
ArrayHelper.getCopy(short[] aArray,
int nStartIndex,
int nLength)
Get a 1:1 copy of the passed array using the passed number of array
elements starting at the specified index.
|
static <ELEMENTTYPE> |
CollectionHelper.getDifference(Collection<? extends ELEMENTTYPE> aCollection1,
Collection<? extends ELEMENTTYPE> aCollection2)
Get all elements that are only contained in the first contained, and not in
the second.
|
static <KEY,VALUE> |
CollectionHelper.getFilteredMap(Map<KEY,VALUE> aValues,
Collection<KEY> aKeys)
Get a map consisting only of a set of specified keys.
|
static <ELEMENTTYPE> |
CollectionHelper.getIntersected(Collection<? extends ELEMENTTYPE> aCollection1,
Collection<? extends ELEMENTTYPE> aCollection2)
Get all elements that are contained in the first AND in the second
container.
|
static <ELEMENTTYPE> |
CollectionHelper.getReverseList(Collection<? extends ELEMENTTYPE> aCollection) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.getReverseLookup(IMultiMapSetBased<KEYTYPE,VALUETYPE> aMap)
Get a map where the lookup (1K..nV) has been reversed to (1V..nK)
|
static <KEYTYPE,VALUETYPE> |
CollectionHelper.getReverseLookupSet(IMultiMap<KEYTYPE,VALUETYPE,? extends Collection<VALUETYPE>> aMap)
Get a map where the lookup (1K..nV) has been reversed to (1V..nK)
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.getSorted(Collection<? extends ELEMENTTYPE> aCont)
Convert the given collection object to a sorted list.
|
static <ELEMENTTYPE> |
CollectionHelper.getSorted(Collection<? extends ELEMENTTYPE> aCont,
Comparator<? super ELEMENTTYPE> aComparator)
Convert the given collection object to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.getSorted(ELEMENTTYPE... aCont)
Convert the given iterable object to a sorted list.
|
static <ELEMENTTYPE> |
CollectionHelper.getSorted(ELEMENTTYPE[] aCont,
Comparator<? super ELEMENTTYPE> aComparator)
Convert the given iterable object to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.getSorted(IIterableIterator<? extends ELEMENTTYPE> aIter)
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.getSorted(IIterableIterator<? extends ELEMENTTYPE> aIter,
Comparator<? super ELEMENTTYPE> aComparator)
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.getSorted(Iterable<? extends ELEMENTTYPE> aCont)
Convert the given iterable object to a sorted list.
|
static <ELEMENTTYPE> |
CollectionHelper.getSorted(Iterable<? extends ELEMENTTYPE> aCont,
Comparator<? super ELEMENTTYPE> aComparator)
Convert the given iterable object to a sorted list.
|
static <SRCTYPE,DSTTYPE extends Comparable<? super DSTTYPE>> |
ContainerConversionHelper.getSorted(Iterable<? extends SRCTYPE> aCont,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter)
Convert the given iterator to a sorted list.
|
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.getSorted(Iterable<? extends SRCTYPE> aCont,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter,
Comparator<? super DSTTYPE> aComparator)
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.getSorted(Iterator<? extends ELEMENTTYPE> aIter)
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE> |
CollectionHelper.getSorted(Iterator<? extends ELEMENTTYPE> aIter,
Comparator<? super ELEMENTTYPE> aComparator)
Convert the given iterator to a sorted list.
|
static <SRCTYPE,DSTTYPE extends Comparable<? super DSTTYPE>> |
ContainerConversionHelper.getSorted(Iterator<? extends SRCTYPE> it,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter)
Convert the given iterator to a sorted list.
|
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.getSorted(Iterator<? extends SRCTYPE> it,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter,
Comparator<? super DSTTYPE> aComparator)
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE> |
CollectionHelper.getStackCopyWithoutTop(NonBlockingStack<ELEMENTTYPE> aStack) |
static <ELEMENTTYPE> |
CollectionHelper.getSubList(List<ELEMENTTYPE> aCont,
int nStartIndex,
int nSectionLength)
Gets a sublist excerpt of the passed list.
|
static <KEYTYPE,VALUETYPE> |
CollectionHelper.getSwappedKeyValues(Map<KEYTYPE,VALUETYPE> aMap)
Get a map where keys and values are exchanged.
|
static <ELEMENTTYPE> |
ArrayHelper.newArray(Class<? extends ELEMENTTYPE> aClass,
int nSize) |
static <ELEMENTTYPE> |
ArrayHelper.newArray(Collection<? extends ELEMENTTYPE> aCollection,
Class<ELEMENTTYPE> aClass)
Create a new array with the elements in the passed collection..
|
static <SRCTYPE,DSTTYPE> |
ArrayConversionHelper.newArray(Collection<? extends SRCTYPE> aList,
IConverter<SRCTYPE,DSTTYPE> aConv,
Class<DSTTYPE> aDstClass) |
static <ELEMENTTYPE> |
ArrayHelper.newArray(int nArraySize,
ELEMENTTYPE aValue,
Class<ELEMENTTYPE> aClass)
Create a new array with a predefined number of elements containing the
passed value.
|
static <SRCTYPE,DSTTYPE> |
ArrayConversionHelper.newArray(SRCTYPE[] aArray,
IConverter<SRCTYPE,DSTTYPE> aConv,
Class<DSTTYPE> aDstClass) |
static <ELEMENTTYPE> |
ArrayHelper.newArraySameType(ELEMENTTYPE[] aArray,
int nSize)
Create a new empty array with the same type as the passed array.
|
static <ELEMENTTYPE> |
ArrayHelper.newArraySingleElement(ELEMENTTYPE aElement,
Class<ELEMENTTYPE> aClass)
Wrapper that allows a single argument to be treated as an array.
|
static List<Boolean> |
CollectionHelper.newBooleanList(boolean... aValues) |
static Set<Boolean> |
CollectionHelper.newBooleanOrderedSet(boolean... aValues) |
static Set<Boolean> |
CollectionHelper.newBooleanSet(boolean... aValues) |
static TreeSet<Boolean> |
CollectionHelper.newBooleanSortedSet(boolean... aValues) |
static Vector<Boolean> |
CollectionHelper.newBooleanVector(boolean... aValues) |
static List<Byte> |
CollectionHelper.newByteList(byte... aValues) |
static Set<Byte> |
CollectionHelper.newByteOrderedSet(byte... aValues) |
static Set<Byte> |
CollectionHelper.newByteSet(byte... aValues) |
static TreeSet<Byte> |
CollectionHelper.newByteSortedSet(byte... aValues) |
static Vector<Byte> |
CollectionHelper.newByteVector(byte... aValues) |
static List<Character> |
CollectionHelper.newCharList(char... aValues) |
static Set<Character> |
CollectionHelper.newCharOrderedSet(char... aValues) |
static Set<Character> |
CollectionHelper.newCharSet(char... aValues) |
static TreeSet<Character> |
CollectionHelper.newCharSortedSet(char... aValues) |
static Vector<Character> |
CollectionHelper.newCharVector(char... aValues) |
static List<Double> |
CollectionHelper.newDoubleList(double... aValues) |
static Set<Double> |
CollectionHelper.newDoubleOrderedSet(double... aValues) |
static Set<Double> |
CollectionHelper.newDoubleSet(double... aValues) |
static TreeSet<Double> |
CollectionHelper.newDoubleSortedSet(double... aValues) |
static Vector<Double> |
CollectionHelper.newDoubleVector(double... aValues) |
static <ELEMENTTYPE extends Enum<ELEMENTTYPE>> |
CollectionHelper.newEnumSet(Class<ELEMENTTYPE> aEnumClass,
Collection<ELEMENTTYPE> aValues) |
static <ELEMENTTYPE extends Enum<ELEMENTTYPE>> |
CollectionHelper.newEnumSet(Class<ELEMENTTYPE> aEnumClass,
ELEMENTTYPE... aValues) |
static <ELEMENTTYPE extends Enum<ELEMENTTYPE>> |
CollectionHelper.newEnumSet(Class<ELEMENTTYPE> aEnumClass,
EnumSet<ELEMENTTYPE> aValues) |
static List<Float> |
CollectionHelper.newFloatList(float... aValues) |
static Set<Float> |
CollectionHelper.newFloatOrderedSet(float... aValues) |
static Set<Float> |
CollectionHelper.newFloatSet(float... aValues) |
static TreeSet<Float> |
CollectionHelper.newFloatSortedSet(float... aValues) |
static Vector<Float> |
CollectionHelper.newFloatVector(float... aValues) |
static List<Integer> |
CollectionHelper.newIntList(int... aValues) |
static Set<Integer> |
CollectionHelper.newIntOrderedSet(int... aValues) |
static Set<Integer> |
CollectionHelper.newIntSet(int... aValues) |
static TreeSet<Integer> |
CollectionHelper.newIntSortedSet(int... aValues) |
static Vector<Integer> |
CollectionHelper.newIntVector(int... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newList() |
static <ELEMENTTYPE> |
CollectionHelper.newList(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newList(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newList(ELEMENTTYPE aValue) |
static <ELEMENTTYPE> |
CollectionHelper.newList(Enumeration<? extends ELEMENTTYPE> aEnum)
Compared to
Collections.list(Enumeration) this method is more
flexible in Generics parameter. |
static <ELEMENTTYPE> |
CollectionHelper.newList(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newList(Iterable<? extends ELEMENTTYPE> aIter) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newList(Iterable<? extends SRCTYPE> aCont,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newList(Iterable<? extends SRCTYPE> aCont,
IFilter<? super SRCTYPE> aFilter,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <ELEMENTTYPE> |
CollectionHelper.newList(Iterator<? extends ELEMENTTYPE> aIter) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newList(SRCTYPE[] aCont,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <ELEMENTTYPE> |
CollectionHelper.newListPrefilled(ELEMENTTYPE aValue,
int nElements) |
static List<Long> |
CollectionHelper.newLongList(long... aValues) |
static Set<Long> |
CollectionHelper.newLongOrderedSet(long... aValues) |
static Set<Long> |
CollectionHelper.newLongSet(long... aValues) |
static TreeSet<Long> |
CollectionHelper.newLongSortedSet(long... aValues) |
static Vector<Long> |
CollectionHelper.newLongVector(long... aValues) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newMap() |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newMap(Collection<? extends KEYTYPE> aKeys,
Collection<? extends VALUETYPE> aValues) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newMap(Collection<? extends Map.Entry<KEYTYPE,VALUETYPE>> aCollection) |
static <ELEMENTTYPE> |
CollectionHelper.newMap(ELEMENTTYPE... aValues) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newMap(KEYTYPE[] aKeys,
VALUETYPE[] aValues) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newMap(KEYTYPE aKey,
VALUETYPE aValue) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newMap(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newMap(Map<? extends KEYTYPE,? extends VALUETYPE>[] aMaps) |
static List<Boolean> |
CollectionHelper.newObjectListFromArray(boolean[] aArray) |
static List<Byte> |
CollectionHelper.newObjectListFromArray(byte[] aArray) |
static List<Character> |
CollectionHelper.newObjectListFromArray(char[] aArray) |
static List<Double> |
CollectionHelper.newObjectListFromArray(double[] aArray) |
static List<Float> |
CollectionHelper.newObjectListFromArray(float[] aArray) |
static List<Integer> |
CollectionHelper.newObjectListFromArray(int[] aArray) |
static List<Long> |
CollectionHelper.newObjectListFromArray(long[] aArray) |
static List<?> |
CollectionHelper.newObjectListFromArray(Object aValue,
Class<?> aComponentType) |
static List<Short> |
CollectionHelper.newObjectListFromArray(short[] aArray) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newOrderedMap() |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newOrderedMap(Collection<? extends KEYTYPE> aKeys,
Collection<? extends VALUETYPE> aValues) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newOrderedMap(Collection<? extends Map.Entry<KEYTYPE,VALUETYPE>> aCollection) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedMap(ELEMENTTYPE... aValues) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newOrderedMap(KEYTYPE[] aKeys,
VALUETYPE[] aValues)
Retrieve a map that is ordered in the way the parameter arrays are passed
in.
|
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newOrderedMap(KEYTYPE aKey,
VALUETYPE aValue) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newOrderedMap(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
static <KEYTYPE,VALUETYPE> |
CollectionHelper.newOrderedMap(Map<? extends KEYTYPE,? extends VALUETYPE>[] aMaps) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet() |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet(ELEMENTTYPE aValue) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet(Enumeration<? extends ELEMENTTYPE> aEnum) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet(Iterable<? extends ELEMENTTYPE> aCont) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newOrderedSet(Iterable<? extends SRCTYPE> aCont,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newOrderedSet(Iterable<? extends SRCTYPE> aCont,
IFilter<? super SRCTYPE> aFilter,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <ELEMENTTYPE> |
CollectionHelper.newOrderedSet(Iterator<? extends ELEMENTTYPE> aIter) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newOrderedSet(Iterator<? extends SRCTYPE> it,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <ELEMENTTYPE> |
CollectionHelper.newQueue() |
static <ELEMENTTYPE> |
CollectionHelper.newQueue(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newQueue(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newQueue(ELEMENTTYPE aValue) |
static <ELEMENTTYPE> |
CollectionHelper.newQueue(Enumeration<? extends ELEMENTTYPE> aEnum)
Compared to
Collections.list(Enumeration) this method is more
flexible in Generics parameter. |
static <ELEMENTTYPE> |
CollectionHelper.newQueue(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newQueue(Iterable<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newQueue(Iterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet() |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(ELEMENTTYPE aValue) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Enumeration<? extends ELEMENTTYPE> aEnum) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Iterable<? extends ELEMENTTYPE> aCont) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newSet(Iterable<? extends SRCTYPE> aCont,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newSet(Iterable<? extends SRCTYPE> aCont,
IFilter<? super SRCTYPE> aFilter,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static <ELEMENTTYPE> |
CollectionHelper.newSet(Iterator<? extends ELEMENTTYPE> aIter) |
static <SRCTYPE,DSTTYPE> |
ContainerConversionHelper.newSet(Iterator<? extends SRCTYPE> it,
IConverter<? super SRCTYPE,? extends DSTTYPE> aConverter) |
static List<Short> |
CollectionHelper.newShortList(short... aValues) |
static Set<Short> |
CollectionHelper.newShortOrderedSet(short... aValues) |
static Set<Short> |
CollectionHelper.newShortSet(short... aValues) |
static TreeSet<Short> |
CollectionHelper.newShortSortedSet(short... aValues) |
static Vector<Short> |
CollectionHelper.newShortVector(short... aValues) |
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.newSortedMap() |
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.newSortedMap(Collection<? extends KEYTYPE> aKeys,
Collection<? extends VALUETYPE> aValues) |
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.newSortedMap(Collection<? extends Map.Entry<KEYTYPE,VALUETYPE>> aCollection) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedMap(ELEMENTTYPE... aValues) |
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.newSortedMap(KEYTYPE[] aKeys,
VALUETYPE[] aValues) |
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.newSortedMap(KEYTYPE aKey,
VALUETYPE aValue) |
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.newSortedMap(Map<? extends KEYTYPE,? extends VALUETYPE> aMap) |
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.newSortedMap(Map<? extends KEYTYPE,? extends VALUETYPE>[] aMaps) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet() |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet(ELEMENTTYPE aValue) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet(Enumeration<? extends ELEMENTTYPE> aEnum) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet(Iterable<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> |
CollectionHelper.newSortedSet(Iterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newStack() |
static <ELEMENTTYPE> |
CollectionHelper.newStack(Collection<? extends ELEMENTTYPE> aValues)
Create a new stack from the given collection.
|
static <ELEMENTTYPE> |
CollectionHelper.newStack(ELEMENTTYPE... aValues)
Create a new stack from the given array.
|
static <ELEMENTTYPE> |
CollectionHelper.newStack(ELEMENTTYPE aValue)
Create a new stack with a single element.
|
static <ELEMENTTYPE> |
CollectionHelper.newVector() |
static <ELEMENTTYPE> |
CollectionHelper.newVector(Collection<? extends ELEMENTTYPE> aCont) |
static <ELEMENTTYPE> |
CollectionHelper.newVector(ELEMENTTYPE... aValues) |
static <ELEMENTTYPE> |
CollectionHelper.newVector(ELEMENTTYPE aValue) |
static <ELEMENTTYPE> |
CollectionHelper.newVector(Enumeration<? extends ELEMENTTYPE> aEnum)
Compared to
Collections.list(Enumeration) this method is more
flexible in Generics parameter. |
static <ELEMENTTYPE> |
CollectionHelper.newVector(IIterableIterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newVector(Iterable<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newVector(Iterator<? extends ELEMENTTYPE> aIter) |
static <ELEMENTTYPE> |
CollectionHelper.newVectorPrefilled(ELEMENTTYPE aValue,
int nElements) |
| Modifier and Type | Method and Description |
|---|---|
Set<KEYTYPE> |
MapBasedReadOnlyAttributeContainer.getAllAttributeNames() |
Set<KEYTYPE> |
IAttributeContainer.getAllAttributeNames() |
Map<KEYTYPE,VALUETYPE> |
MapBasedReadOnlyAttributeContainer.getAllAttributes() |
Map<KEYTYPE,VALUETYPE> |
IHasAttributes.getAllAttributes() |
Map<KEYTYPE,VALUETYPE> |
IAttributeContainer.getAllAttributes() |
Collection<VALUETYPE> |
MapBasedReadOnlyAttributeContainer.getAllAttributeValues() |
Collection<VALUETYPE> |
IAttributeContainer.getAllAttributeValues() |
MapBasedAttributeContainerAny<KEYTYPE> |
MapBasedAttributeContainerAny.getClone() |
MapBasedAttributeContainer<KEYTYPE,VALUETYPE> |
MapBasedAttributeContainer.getClone() |
| Modifier and Type | Method and Description |
|---|---|
Set<Map.Entry<KEYTYPE,VALUETYPE>> |
SingleElementMap.entrySet() |
| Modifier and Type | Method and Description |
|---|---|
protected List<VALUETYPE> |
MultiWeakHashMapVectorBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiWeakHashMapTreeSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiWeakHashMapLinkedHashSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiWeakHashMapHashSetBased.createNewCollection() |
protected List<VALUETYPE> |
MultiWeakHashMapArrayListBased.createNewCollection() |
protected List<VALUETYPE> |
MultiTreeMapVectorBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiTreeMapTreeSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiTreeMapLinkedHashSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiTreeMapHashSetBased.createNewCollection() |
protected List<VALUETYPE> |
MultiTreeMapArrayListBased.createNewCollection() |
protected List<VALUETYPE> |
MultiLinkedHashMapVectorBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiLinkedHashMapTreeSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiLinkedHashMapLinkedHashSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiLinkedHashMapHashSetBased.createNewCollection() |
protected List<VALUETYPE> |
MultiLinkedHashMapArrayListBased.createNewCollection() |
protected List<VALUETYPE> |
MultiHashMapVectorBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiHashMapTreeSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiHashMapLinkedHashSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiHashMapHashSetBased.createNewCollection() |
protected List<VALUETYPE> |
MultiHashMapArrayListBased.createNewCollection() |
protected List<VALUETYPE> |
MultiConcurrentHashMapVectorBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiConcurrentHashMapTreeSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiConcurrentHashMapLinkedHashSetBased.createNewCollection() |
protected Set<VALUETYPE> |
MultiConcurrentHashMapHashSetBased.createNewCollection() |
protected List<VALUETYPE> |
MultiConcurrentHashMapArrayListBased.createNewCollection() |
protected abstract COLLTYPE |
AbstractMultiWeakHashMap.createNewCollection() |
protected abstract COLLTYPE |
AbstractMultiTreeMap.createNewCollection() |
protected abstract COLLTYPE |
AbstractMultiLinkedHashMap.createNewCollection() |
protected abstract COLLTYPE |
AbstractMultiHashMap.createNewCollection() |
protected abstract COLLTYPE |
AbstractMultiConcurrentHashMap.createNewCollection() |
protected WeakHashMap<KEYTYPE2,VALUETYPE> |
MultiTreeMapWeakHashMapBased.createNewInnerMap() |
protected TreeMap<KEYTYPE2,VALUETYPE> |
MultiTreeMapTreeMapBased.createNewInnerMap() |
protected LinkedHashMap<KEYTYPE2,VALUETYPE> |
MultiTreeMapLinkedHashMapBased.createNewInnerMap() |
protected HashMap<KEYTYPE2,VALUETYPE> |
MultiTreeMapHashMapBased.createNewInnerMap() |
protected WeakHashMap<KEYTYPE2,VALUETYPE> |
MultiLinkedHashMapWeakHashMapBased.createNewInnerMap() |
protected TreeMap<KEYTYPE2,VALUETYPE> |
MultiLinkedHashMapTreeMapBased.createNewInnerMap() |
protected LinkedHashMap<KEYTYPE2,VALUETYPE> |
MultiLinkedHashMapLinkedHashMapBased.createNewInnerMap() |
protected HashMap<KEYTYPE2,VALUETYPE> |
MultiLinkedHashMapHashMapBased.createNewInnerMap() |
protected WeakHashMap<KEYTYPE2,VALUETYPE> |
MultiHashMapWeakHashMapBased.createNewInnerMap() |
protected TreeMap<KEYTYPE2,VALUETYPE> |
MultiHashMapTreeMapBased.createNewInnerMap() |
protected LinkedHashMap<KEYTYPE2,VALUETYPE> |
MultiHashMapLinkedHashMapBased.createNewInnerMap() |
protected HashMap<KEYTYPE2,VALUETYPE> |
MultiHashMapHashMapBased.createNewInnerMap() |
| Modifier and Type | Method and Description |
|---|---|
static <V1 extends Comparable<? super V1>,V2> |
PairHelper.getSortedByPairFirst(Collection<? extends IPair<V1,V2>> aList) |
static <V1,V2 extends Comparable<? super V2>> |
PairHelper.getSortedByPairSecond(Collection<? extends IPair<V1,V2>> aList) |
| Modifier and Type | Method and Description |
|---|---|
Collator |
CollatingComparator.getCollator() |
Collator |
AbstractCollatingComparator.getCollator() |
static Collator |
CollatorHelper.getCollatorSpaceBeforeDot(Locale aLocale)
Create a collator that is based on the standard collator but sorts spaces
before dots, because spaces are more important word separators than dots.
|
| Modifier and Type | Method and Description |
|---|---|
List<DATATYPE> |
AbstractConcurrentCollector.drainQueue() |
| Modifier and Type | Method and Description |
|---|---|
Map<KEYTYPE,VALUETYPE> |
ConverterMapGet.getMap() |
| Modifier and Type | Method and Description |
|---|---|
List<List<String>> |
CSVReader.readAll()
Reads the entire file into a List with each element being a List of
String of tokens. |
| Modifier and Type | Method and Description |
|---|---|
List<IThreadDeadlockCallback> |
ThreadDeadlockDetector.getAllCallbacks() |
StackTraceElement[] |
ThreadDeadlockInfo.getStackTrace() |
| Modifier and Type | Method and Description |
|---|---|
ResourceErrorGroup |
ResourceErrorGroup.getAllErrors() |
ResourceErrorGroup |
ResourceErrorGroup.getAllFailures() |
List<IResourceError> |
ResourceErrorGroup.getAllResourceErrors() |
ResourceErrorGroup |
ResourceErrorGroup.getClone() |
| Modifier and Type | Method and Description |
|---|---|
List<IError> |
FormErrors.getAllFieldItems() |
List<String> |
FormErrors.getAllFieldItemTexts() |
List<IError> |
FormErrors.getAllGlobalItems() |
List<String> |
FormErrors.getAllGlobalItemTexts() |
List<IError> |
IErrorList.getAllItems() |
List<IError> |
ErrorList.getAllItems() |
List<String> |
IErrorList.getAllItemTexts() |
List<String> |
ErrorList.getAllItemTexts() |
List<String> |
IFieldErrorList.getAllItemTextsOfField(String sSearchFieldName)
Get a list with all texts for the specified field name.
|
List<String> |
FormErrors.getAllItemTextsOfField(String sSearchFieldName) |
List<String> |
ErrorList.getAllItemTextsOfField(String sSearchFieldName) |
List<String> |
IFieldErrorList.getAllItemTextsOfFields(String... aSearchFieldNames)
Get a list with all texts for the specified field names
|
List<String> |
FormErrors.getAllItemTextsOfFields(String... aSearchFieldNames) |
List<String> |
ErrorList.getAllItemTextsOfFields(String... aSearchFieldNames) |
List<String> |
IFieldErrorList.getAllItemTextsOfFieldsRegExp(String sRegExp)
Get a list with all texts of entries that have field names matching the
passed regular expression.
|
List<String> |
FormErrors.getAllItemTextsOfFieldsRegExp(String sRegExp) |
List<String> |
ErrorList.getAllItemTextsOfFieldsRegExp(String sRegEx) |
List<String> |
IFieldErrorList.getAllItemTextsOfFieldsStartingWith(String... aSearchFieldNames)
Get a list with all texts of entries that have field names starting with
one of the supplied names.
|
List<String> |
FormErrors.getAllItemTextsOfFieldsStartingWith(String... aSearchFieldNames) |
List<String> |
ErrorList.getAllItemTextsOfFieldsStartingWith(String... aSearchFieldNames) |
IFieldErrorList |
IFieldErrorList.getListOfField(String sSearchFieldName)
Get a sub-list with all entries for the specified field name
|
IErrorList |
FormErrors.getListOfField(String sSearchFieldName) |
ErrorList |
ErrorList.getListOfField(String sSearchFieldName) |
IFieldErrorList |
IFieldErrorList.getListOfFields(String... aSearchFieldNames)
Get a sub-list with all entries for the specified field names
|
IErrorList |
FormErrors.getListOfFields(String... aSearchFieldNames) |
ErrorList |
ErrorList.getListOfFields(String... aSearchFieldNames) |
IFieldErrorList |
IFieldErrorList.getListOfFieldsRegExp(String sRegExp)
Get a sub-list with all entries that have field names matching the passed
regular expression.
|
IErrorList |
FormErrors.getListOfFieldsRegExp(String sRegExp) |
ErrorList |
ErrorList.getListOfFieldsRegExp(String sRegExp) |
IFieldErrorList |
IFieldErrorList.getListOfFieldsStartingWith(String... aSearchFieldNames)
Get a sub-list with all entries that have field names starting with one of
the supplied names.
|
IErrorList |
FormErrors.getListOfFieldsStartingWith(String... aSearchFieldNames) |
ErrorList |
ErrorList.getListOfFieldsStartingWith(String... aSearchFieldNames) |
IErrorList |
IErrorList.getListWithoutField() |
ErrorList |
ErrorList.getListWithoutField() |
IMultiMapListBased<String,IError> |
IFieldErrorList.getStructuredByFieldName() |
IMultiMapListBased<String,IError> |
FormErrors.getStructuredByFieldName() |
IMultiMapListBased<String,IError> |
ErrorList.getStructuredByFieldName() |
IMultiMapListBased<String,IError> |
IFieldErrorList.getStructuredByID() |
IMultiMapListBased<String,IError> |
FormErrors.getStructuredByID() |
IMultiMapListBased<String,IError> |
ErrorList.getStructuredByID() |
| Modifier and Type | Method and Description |
|---|---|
List<? extends IFilter<? super DATATYPE>> |
FilterListAny.getAllContainedFilters() |
List<? extends IFilter<? super DATATYPE>> |
FilterListAll.getAllContainedFilters() |
| Modifier and Type | Method and Description |
|---|---|
Map<IReadableResource,SizeInt> |
ImageDataManager.getAllCachedSizes() |
Set<IReadableResource> |
ImageDataManager.getAllNotExistingResources() |
| Modifier and Type | Method and Description |
|---|---|
char[] |
Codepoint.getAsChars() |
| Modifier and Type | Method and Description |
|---|---|
static List<File> |
FileHelper.getDirectoryContent(File aDirectory)
This is a replacement for
File.listFiles() doing some
additional checks on permissions. |
static List<File> |
FileHelper.getDirectoryContent(File aDirectory,
FileFilter aFileFilter)
This is a replacement for
File.listFiles(FileFilter) doing
some additional checks on permissions. |
static List<File> |
FileHelper.getDirectoryContent(File aDirectory,
FilenameFilter aFilenameFilter)
This is a replacement for
File.listFiles(FilenameFilter) doing
some additional checks on permissions. |
| Modifier and Type | Method and Description |
|---|---|
String[] |
FileFilterFilenameMatchNoRegEx.getAllRegularExpressions() |
String[] |
FileFilterFilenameMatchAnyRegEx.getAllRegularExpressions() |
| Modifier and Type | Method and Description |
|---|---|
List<FileMonitor> |
FileMonitorManager.getAllFileMonitors() |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
ReadableResourceByteArray.getAllBytes() |
| Modifier and Type | Method and Description |
|---|---|
List<IReadableResourceProvider> |
ReadableResourceProviderChain.getAllContainedReadingResourceProviders() |
List<IWritableResourceProvider> |
WritableResourceProviderChain.getAllContainedWritingResourceProviders() |
| Modifier and Type | Method and Description |
|---|---|
ByteBuffer[] |
ByteBuffersInputStream.getAllBuffers() |
byte[] |
MessageDigestInputStream.getAllDigestBytes()
Get the message digest of this stream.
|
byte[] |
ByteBufferOutputStream.getAsByteArray()
Get everything as a big byte array, without altering the ByteBuffer.
|
char[] |
NonBlockingStringWriter.getAsCharArray() |
byte[] |
MessageDigestOutputStream.getDigest()
Get the message digest of this stream.
|
static List<String> |
StreamHelper.readStreamLines(IHasInputStream aISP,
Charset aCharset)
Get the content of the passed Spring resource as one big string in the
passed character set.
|
static List<String> |
StreamHelper.readStreamLines(IHasInputStream aISP,
Charset aCharset,
int nLinesToSkip,
int nLinesToRead)
Get the content of the passed Spring resource as one big string in the
passed character set.
|
static List<String> |
StreamHelper.readStreamLines(InputStream aIS,
Charset aCharset)
Get the content of the passed stream as a list of lines in the passed
character set.
|
static List<String> |
StreamHelper.readStreamLines(InputStream aIS,
Charset aCharset,
int nLinesToSkip,
int nLinesToRead)
Get the content of the passed stream as a list of lines in the passed
character set.
|
byte[] |
NonBlockingByteArrayOutputStream.toByteArray()
Creates a newly allocated byte array.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
ByteArrayOutputStreamProvider.getBytes() |
byte[] |
ByteArrayInputStreamProvider.getData() |
| Modifier and Type | Method and Description |
|---|---|
static Set<Class<?>> |
ClassHelper.getAllPrimitiveClasses() |
static Set<Class<?>> |
ClassHelper.getAllPrimitiveWrapperClasses() |
static <T> List<T> |
ServiceLoaderHelper.getAllSPIImplementations(Class<T> aSPIClass)
Uses the
ServiceLoader to load all SPI implementations of the
passed class |
static <T> List<T> |
ServiceLoaderHelper.getAllSPIImplementations(Class<T> aSPIClass,
ClassLoader aClassLoader)
Uses the
ServiceLoader to load all SPI implementations of the
passed class |
static <T> List<T> |
ServiceLoaderHelper.getAllSPIImplementations(Class<T> aSPIClass,
ClassLoader aClassLoader,
org.slf4j.Logger aLogger)
Uses the
ServiceLoader to load all SPI implementations of the
passed class |
static <T> List<T> |
ServiceLoaderHelper.getAllSPIImplementations(Class<T> aSPIClass,
org.slf4j.Logger aLogger)
Uses the
ServiceLoader to load all SPI implementations of the
passed class |
static Set<Class<?>> |
ClassHierarchyCache.getClassHierarchy(Class<?> aClass)
Get the complete super class hierarchy of the passed class including all
super classes and all interfaces of the passed class and of all parent
classes.
|
static List<Class<?>> |
ClassHierarchyCache.getClassHierarchyList(Class<?> aClass)
Get the complete super class hierarchy of the passed class including all
super classes and all interfaces of the passed class and of all parent
classes.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Locale> |
LocaleCache.getAllLanguages()
Get all contained locales that consist only of a non-empty language.
|
static Map<Locale,String> |
LocaleHelper.getAllLocaleDisplayNames(Locale aContentLocale)
Get all possible locale names in the passed locale
|
Set<Locale> |
LocaleCache.getAllLocales()
Get all contained locales except the locales "all" and "independent"
|
Collection<Locale> |
IHasLocales.getAllLocales() |
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
CountryCache.getAllCountries() |
Set<Locale> |
CountryCache.getAllCountryLocales() |
static Set<Locale> |
ECountry.getCountryListAsLocales() |
| Modifier and Type | Method and Description |
|---|---|
List<LogMessage> |
InMemoryLogger.getAllMessages() |
Date |
LogMessage.getIssueDateTime() |
| Modifier and Type | Method and Description |
|---|---|
Set<List<DATATYPE>> |
CombinationGeneratorFlexible.getCombinations(List<DATATYPE> aElements)
Generate all combinations without duplicates.
|
static <DATATYPE> Set<List<DATATYPE>> |
CombinationGeneratorFlexible.getCombinations(List<DATATYPE> aElements,
boolean bAllowEmpty) |
List<DATATYPE> |
CombinationGenerator.next()
Generate next combination (algorithm from Rosen p. 286)
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
NonBlockingMessageDigestGenerator.getAllDigestBytes() |
byte[] |
MessageDigestGenerator.getAllDigestBytes() |
byte[] |
IMessageDigestGenerator.getAllDigestBytes()
Finish calculation of the hash value and return the digest.
|
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(byte[] aContent,
EMessageDigestAlgorithm... aAlgorithms) |
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(byte[] aContent,
int nOfs,
int nLength,
EMessageDigestAlgorithm... aAlgorithms) |
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(byte[] aContent,
int nOfs,
int nLength,
NonBlockingMessageDigestGenerator aMDGen) |
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(byte[] aContent,
NonBlockingMessageDigestGenerator aMDGen) |
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(EMessageDigestAlgorithm eAlgorithm,
byte[] aBytes) |
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(EMessageDigestAlgorithm eAlgorithm,
byte[] aBytes,
int nOfs,
int nLength) |
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(EMessageDigestAlgorithm eAlgorithm,
String sText,
Charset aCharset) |
byte[] |
NonBlockingMessageDigestGenerator.getAllDigestBytes(int nLength) |
byte[] |
MessageDigestGenerator.getAllDigestBytes(int nLength) |
byte[] |
IMessageDigestGenerator.getAllDigestBytes(int nLength)
Get only a part of the digest, namely the first number of bytes.
|
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytes(String sContent,
Charset aCharset,
EMessageDigestAlgorithm... aAlgorithms) |
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytesFromInputStream(InputStream aIS,
EMessageDigestAlgorithm... aAlgorithms)
Create a hash value from the complete input stream.
|
static byte[] |
MessageDigestGeneratorHelper.getAllDigestBytesFromInputStream(InputStream aIS,
NonBlockingMessageDigestGenerator aMDGen)
Create a hash value from the complete input stream.
|
byte[] |
MessageDigestValue.getDigestBytes() |
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
MicroElement.getAllAttributeNames() |
Set<String> |
IMicroElement.getAllAttributeNames()
Get a set of all attribute names.
|
List<? extends IMicroAttribute> |
MicroElement.getAllAttributeObjs() |
List<? extends IMicroAttribute> |
IMicroElement.getAllAttributeObjs()
Get a list of all attributes.
|
Set<IMicroQName> |
MicroElement.getAllAttributeQNames() |
Set<IMicroQName> |
IMicroElement.getAllAttributeQNames()
Get a set of all attribute names.
|
List<String> |
MicroElement.getAllAttributeValues() |
Collection<String> |
IMicroElement.getAllAttributeValues()
Get a set of all attribute values.
|
List<IMicroElement> |
MicroElement.getAllChildElements() |
List<IMicroElement> |
IMicroElement.getAllChildElements()
Get a list of all direct child elements.
|
List<IMicroElement> |
MicroElement.getAllChildElements(String sTagName) |
List<IMicroElement> |
IMicroElement.getAllChildElements(String sTagName)
Get a list of all direct child elements having the specified tag name.
|
List<IMicroElement> |
MicroElement.getAllChildElements(String sNamespaceURI,
String sLocalName) |
List<IMicroElement> |
IMicroElement.getAllChildElements(String sNamespaceURI,
String sLocalName)
Get a list of all direct child elements having the specified namespace and
the specified tag name.
|
List<IMicroElement> |
MicroElement.getAllChildElementsRecursive() |
List<IMicroElement> |
IMicroElement.getAllChildElementsRecursive()
Recursively get all child elements.
|
List<IMicroNode> |
AbstractMicroNodeWithChildren.getAllChildren() |
List<IMicroNode> |
AbstractMicroNodeWithChildren.getAllChildrenRecursive() |
Map<EMicroEvent,Set<IMicroEventTarget>> |
IMicroNode.getAllEventTargets() |
Map<EMicroEvent,Set<IMicroEventTarget>> |
AbstractMicroNode.getAllEventTargets() |
Set<IMicroEventTarget> |
IMicroNode.getAllEventTargets(EMicroEvent eEvent)
Get all event targets for a certain event.
|
Set<IMicroEventTarget> |
AbstractMicroNode.getAllEventTargets(EMicroEvent eEvent) |
Map<IMicroQName,String> |
MicroElement.getAllQAttributes() |
Map<IMicroQName,String> |
IMicroElement.getAllQAttributes()
Get a map of all fully qualified attribute names and values.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<? extends IMicroElement> |
ChildrenProviderElementWithName.getAllChildren(IMicroElement aCurrent) |
static IMicroContainer |
MicroHelper.getAllChildrenAsContainer(IMicroNode aParent)
Create a micro container with all children of the passed node.
|
static IMicroContainer |
MicroHelper.getAllOriginalChildrenAsContainer(IMicroNode aParent)
Create a micro container with all children of the passed node.
|
static List<String> |
XMLListHandler.readList(IHasInputStream aISP) |
static List<String> |
XMLListHandler.readList(InputStream aIS)
Read a predefined XML file that contains list items.
|
static Map<String,String> |
XMLMapHandler.readMap(IHasInputStream aISP) |
static Map<String,String> |
XMLMapHandler.readMap(InputStream aIS)
Read a mapping from the passed input stream.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
MimeTypeContent.getAllContentBytes() |
Set<String> |
MimeTypeInfo.getAllExtensions() |
Set<String> |
MimeTypeInfoManager.getAllExtensionsOfMimeType(IMimeType aMimeType)
Get all extensions associated to the specified mime type
|
Set<MimeTypeInfo.ExtensionWithSource> |
MimeTypeInfo.getAllExtensionsWithSource() |
Set<String> |
MimeTypeInfo.getAllGlobs() |
Set<String> |
MimeTypeInfoManager.getAllGlobsOfMimeType(IMimeType aMimeType)
Get all globs (=filename patterns) associated to the specified mime type
|
List<MimeTypeInfo> |
MimeTypeInfoManager.getAllInfosOfExtension(String sExtension)
Get all infos associated with the specified filename extension.
|
List<MimeTypeInfo> |
MimeTypeInfoManager.getAllInfosOfFilename(File aFile) |
List<MimeTypeInfo> |
MimeTypeInfoManager.getAllInfosOfFilename(String sFilename) |
List<MimeTypeInfo> |
MimeTypeInfoManager.getAllInfosOfMimeType(IMimeType aMimeType)
Get all infos associated with the passed mime type.
|
List<MimeTypeContent> |
MimeTypeDeterminator.getAllMimeTypeContents() |
List<MimeTypeInfo> |
MimeTypeInfoManager.getAllMimeTypeInfos() |
Set<IMimeType> |
MimeTypeInfoManager.getAllMimeTypes() |
Set<IMimeType> |
MimeTypeInfo.getAllMimeTypes() |
Set<IMimeType> |
MimeTypeInfoManager.getAllMimeTypesForExtension(String sExtension)
Get all mime types that are associated to the specified filename extension.
|
Set<IMimeType> |
MimeTypeInfoManager.getAllMimeTypesForFilename(String sFilename)
Get all mime types that are associated to the extension of the specified
filename.
|
Set<String> |
MimeTypeInfoManager.getAllMimeTypeStrings() |
Set<String> |
MimeTypeInfo.getAllMimeTypeStrings() |
Set<String> |
MimeTypeInfoManager.getAllMimeTypeStringsForExtension(String sExtension)
Get all mime types that are associated to the specified filename extension.
|
Set<String> |
MimeTypeInfoManager.getAllMimeTypeStringsForFilename(String sFilename)
Get all mime types that are associated to the extension of the specified
filename.
|
Set<MimeTypeInfo.MimeTypeWithSource> |
MimeTypeInfo.getAllMimeTypesWithSource() |
List<MimeTypeParameter> |
MimeType.getAllParameters() |
List<MimeTypeParameter> |
IMimeType.getAllParameters() |
Set<String> |
MimeTypeInfo.getAllParentTypes() |
static char[] |
MimeTypeParser.getAllTSpecialChars() |
IMicroDocument |
MimeTypeInfoManager.getAsDocument() |
| Modifier and Type | Method and Description |
|---|---|
Map<String,IApplicationScope> |
GlobalScope.getAllApplicationScopes() |
Map<String,IScopeRenewalAware> |
IScope.getAllScopeRenewalAwareAttributes() |
Map<String,IScopeRenewalAware> |
AbstractMapBasedScope.getAllScopeRenewalAwareAttributes() |
Map<String,ISessionApplicationScope> |
SessionScope.getAllSessionApplicationScopes() |
| Modifier and Type | Method and Description |
|---|---|
Collection<? extends ISessionScope> |
ScopeSessionManager.getAllSessionScopes() |
| Modifier and Type | Method and Description |
|---|---|
static List<AbstractApplicationSingleton> |
AbstractApplicationSingleton.getAllApplicationSingletons()
Get all instantiated singleton objects registered in the current
application scope.
|
static List<AbstractGlobalSingleton> |
AbstractGlobalSingleton.getAllGlobalSingletons()
Get all instantiated singleton objects registered in the current global
scope.
|
static List<AbstractRequestSingleton> |
AbstractRequestSingleton.getAllRequestSingletons()
Get all instantiated singleton objects registered in the current request
scope.
|
static List<AbstractSessionApplicationSingleton> |
AbstractSessionApplicationSingleton.getAllSessionApplicationSingletons()
Get all instantiated singleton objects registered in the current session
application scope.
|
static List<AbstractSessionSingleton> |
AbstractSessionSingleton.getAllSessionSingletons()
Get all instantiated singleton objects registered in the current session
scope.
|
static <T extends AbstractSingleton> |
AbstractSingleton.getAllSingletons(IScope aScope,
Class<T> aDesiredClass)
Get all singleton objects registered in the respective sub-class of this
class.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<? extends DefaultTreeItemWithID<KEYTYPE,VALUETYPE>> |
AbstractSessionSingletonTreeWithUniqueID.getAllChildren() |
Collection<? extends DefaultTreeItemWithID<KEYTYPE,VALUETYPE>> |
AbstractSessionApplicationSingletonTreeWithUniqueID.getAllChildren() |
Collection<? extends DefaultTreeItemWithID<KEYTYPE,VALUETYPE>> |
AbstractRequestSingletonTreeWithUniqueID.getAllChildren() |
Collection<? extends DefaultTreeItemWithID<KEYTYPE,VALUETYPE>> |
AbstractGlobalSingletonTreeWithUniqueID.getAllChildren() |
Collection<? extends DefaultTreeItemWithID<KEYTYPE,VALUETYPE>> |
AbstractApplicationSingletonTreeWithUniqueID.getAllChildren() |
Collection<VALUETYPE> |
AbstractSessionSingletonTreeWithUniqueID.getAllItemDatas() |
Collection<VALUETYPE> |
AbstractSessionApplicationSingletonTreeWithUniqueID.getAllItemDatas() |
Collection<VALUETYPE> |
AbstractRequestSingletonTreeWithUniqueID.getAllItemDatas() |
Collection<VALUETYPE> |
AbstractGlobalSingletonTreeWithUniqueID.getAllItemDatas() |
Collection<VALUETYPE> |
AbstractApplicationSingletonTreeWithUniqueID.getAllItemDatas() |
| Modifier and Type | Method and Description |
|---|---|
List<IApplicationScopeSPI> |
ScopeSPIManager.getAllApplicationScopeSPIs() |
List<IGlobalScopeSPI> |
ScopeSPIManager.getAllGlobalScopeSPIs() |
List<IRequestScopeSPI> |
ScopeSPIManager.getAllRequestScopeSPIs() |
List<ISessionApplicationScopeSPI> |
ScopeSPIManager.getAllSessionApplicationScopeSPIs() |
List<ISessionScopeSPI> |
ScopeSPIManager.getAllSessionScopeSPIs() |
| Modifier and Type | Method and Description |
|---|---|
static Set<String> |
StatisticsManager.getAllCacheHandler() |
static Set<String> |
StatisticsManager.getAllCounterHandler() |
static Set<String> |
StatisticsManager.getAllKeyedCounterHandler() |
static Set<String> |
StatisticsManager.getAllKeyedSizeHandler() |
static Set<String> |
StatisticsManager.getAllKeyedTimerHandler() |
Set<String> |
StatisticsHandlerKeyedCounter.getAllKeys() |
Set<String> |
IStatisticsHandlerKeyed.getAllKeys() |
Set<String> |
AbstractStatisticsHandlerKeyedNumeric.getAllKeys() |
static Set<String> |
StatisticsManager.getAllSizeHandler() |
static Set<String> |
StatisticsManager.getAllTimerHandler() |
| Modifier and Type | Method and Description |
|---|---|
static List<String> |
StringHelper.getExploded(char cSep,
String sElements)
Take a concatenated String and return a
List of all elements in the
passed string, using specified separator string. |
static List<String> |
StringHelper.getExploded(char cSep,
String sElements,
int nMaxItems)
Take a concatenated String and return a
List of all elements in the
passed string, using specified separator string. |
static List<String> |
StringHelper.getExploded(String sSep,
String sElements)
Take a concatenated String and return a
List of all elements in the
passed string, using specified separator string. |
static List<String> |
StringHelper.getExploded(String sSep,
String sElements,
int nMaxItems)
Take a concatenated String and return a
List of all elements in the
passed string, using specified separator string. |
static Set<String> |
StringHelper.getExplodedToOrderedSet(String sSep,
String sElements)
Take a concatenated String and return an ordered
LinkedHashSet of
all elements in the passed string, using specified separator string. |
static Set<String> |
StringHelper.getExplodedToSet(String sSep,
String sElements)
Take a concatenated String and return a
Set of all elements in the
passed string, using specified separator string. |
static SortedSet<String> |
StringHelper.getExplodedToSortedSet(String sSep,
String sElements)
Take a concatenated String and return a sorted
TreeSet of all
elements in the passed string, using specified separator string. |
static byte[] |
StringHelper.getHexDecoded(char[] aInput) |
static byte[] |
StringHelper.getHexDecoded(char[] aInput,
int nOfs,
int nLen) |
static byte[] |
StringHelper.getHexDecoded(String sInput) |
| Modifier and Type | Method and Description |
|---|---|
static Map<String,String> |
SystemProperties.getAllProperties() |
static Set<String> |
SystemProperties.getAllPropertyNames() |
static Set<String> |
SystemProperties.getAllWarnedPropertyNames() |
| Modifier and Type | Method and Description |
|---|---|
Set<Locale> |
AbstractReadOnlyMapBasedMultilingualText.getAllLocales() |
Map<Locale,String> |
IMultilingualText.getAllTexts() |
Map<Locale,String> |
AbstractReadOnlyMapBasedMultilingualText.getAllTexts() |
| Modifier and Type | Method and Description |
|---|---|
Object[] |
HasDisplayTextWithArgs.getArgs() |
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
EnumTextResolverWithPropertiesOverrideAndFallback.getAllUsedFallbackBundleNames() |
Set<String> |
EnumTextResolverWithPropertiesOverrideAndFallback.getAllUsedOverrideBundleNames() |
| Modifier and Type | Method and Description |
|---|---|
Map<String,String> |
XMLResourceBundle.getAllValues() |
List<String> |
XMLResourceBundleControl.getFormats(String sBaseName) |
| Modifier and Type | Method and Description |
|---|---|
static MultilingualText |
TextHelper.create_DE_EN(String sDE,
String sEN) |
static MultilingualText |
TextHelper.create_DE(String sDE) |
static MultilingualText |
TextHelper.create_EN(String sEN) |
static MultilingualText |
TextHelper.createMultilingualTextFromMap(Map<String,String> aMap) |
static MultilingualText |
TextHelper.getCopyWithLocales(IMultilingualText aMLT,
Collection<Locale> aContentLocales)
Get a copy of this object with the specified locales.
|
| Modifier and Type | Method and Description |
|---|---|
Set<IThirdPartyModule> |
ThirdPartyModuleRegistry.getAllRegisteredThirdPartyModules() |
| Modifier and Type | Method and Description |
|---|---|
static StopWatch |
StopWatch.createdStarted() |
static StopWatch |
StopWatch.createdStopped() |
| Modifier and Type | Method and Description |
|---|---|
List<DATATYPE> |
BasicTreeItem.getAllChildDatas() |
List<ITEMTYPE> |
BasicTreeItem.getAllChildren() |
Collection<? extends ITEMTYPE> |
BasicTree.getAllChildren() |
| Modifier and Type | Method and Description |
|---|---|
static <KEYTYPE,DATATYPE,ITEMTYPE extends ITreeItemWithID<KEYTYPE,DATATYPE,ITEMTYPE>> |
TreeWithIDSearcher.findAllItemsWithIDRecursive(IBasicTree<DATATYPE,ITEMTYPE> aTree,
KEYTYPE aSearchID)
Fill all items with the same ID by linearly scanning of the tree.
|
static <KEYTYPE,DATATYPE,ITEMTYPE extends ITreeItemWithID<KEYTYPE,DATATYPE,ITEMTYPE>> |
TreeWithIDSearcher.findAllItemsWithIDRecursive(ITEMTYPE aTreeItem,
KEYTYPE aSearchID)
Fill all items with the same ID by linearly scanning the tree.
|
| Modifier and Type | Method and Description |
|---|---|
Set<KEYTYPE> |
ITreeItemWithID.getAllChildDataIDs() |
Set<KEYTYPE> |
BasicTreeItemWithID.getAllChildDataIDs() |
List<DATATYPE> |
BasicTreeItemWithID.getAllChildDatas() |
Collection<? extends ITEMTYPE> |
BasicTreeWithID.getAllChildren() |
List<ITEMTYPE> |
BasicTreeItemWithID.getAllChildren() |
| Modifier and Type | Method and Description |
|---|---|
Collection<DATATYPE> |
ITreeItemWithUniqueIDFactory.getAllItemDatas() |
Collection<DATATYPE> |
BasicTreeWithGlobalUniqueID.getAllItemDatas() |
List<DATATYPE> |
AbstractTreeItemWithUniqueIDFactory.getAllItemDatas() |
Collection<ITEMTYPE> |
ITreeItemWithUniqueIDFactory.getAllItems() |
Collection<ITEMTYPE> |
BasicTreeWithGlobalUniqueID.getAllItems() |
List<ITEMTYPE> |
AbstractTreeItemWithUniqueIDFactory.getAllItems() |
| Modifier and Type | Method and Description |
|---|---|
Map<String,String> |
URLData.getAllParams() |
Map<String,String> |
IURLData.getAllParams() |
Map<String,String> |
AbstractSimpleURL.getAllParams() |
Collection<IURLProtocol> |
URLProtocolRegistry.getAllProtocols() |
static Map<String,String> |
URLHelper.getQueryStringAsMap(String sQueryString) |
static Map<String,String> |
URLHelper.getQueryStringAsMap(String sQueryString,
IDecoder<String> aParameterDecoder) |
| Modifier and Type | Method and Description |
|---|---|
static List<String> |
VendorInfo.getFileHeaderLines() |
| Modifier and Type | Method and Description |
|---|---|
Wrapper<DATATYPE> |
Wrapper.getClone() |
| Modifier and Type | Method and Description |
|---|---|
static Map<String,String> |
XMLHelper.getAllAttributesAsMap(Element aSrcNode) |
static List<EXMLParserFeature> |
EXMLParserFeature.getAllFeaturesOfType(EXMLParserFeatureType eFeatureType) |
static List<EXMLParserProperty> |
EXMLParserProperty.getAllPropertiesOfType(EXMLParserPropertyType ePropertyType) |
static Map<EXMLDOMFeatureVersion,List<String>> |
XMLDebug.getAllSupportedFeatures() |
static List<String> |
XMLDebug.getAllSupportedFeatures(EXMLDOMFeatureVersion eFeatureVersion) |
| Modifier and Type | Method and Description |
|---|---|
List<LSResourceData> |
CollectingLSResourceResolver.getAllRequestedResources() |
| Modifier and Type | Method and Description |
|---|---|
MapBasedNamespaceContext |
MapBasedNamespaceContext.getClone() |
Map<String,String> |
SingleElementNamespaceContext.getPrefixToNamespaceURIMap() |
Map<String,String> |
MapBasedNamespaceContext.getPrefixToNamespaceURIMap() |
Map<String,String> |
IIterableNamespaceContext.getPrefixToNamespaceURIMap()
Get all contained mappings.
|
| Modifier and Type | Method and Description |
|---|---|
IResourceErrorGroup |
CollectingSAXErrorHandler.getResourceErrors() |
| Modifier and Type | Method and Description |
|---|---|
Map<EXMLParserFeature,Boolean> |
SAXReaderSettings.getAllFeatureValues() |
static Map<EXMLParserFeature,Boolean> |
SAXReaderDefaultSettings.getAllFeatureValues() |
Map<EXMLParserFeature,Boolean> |
IBaseXMLReaderSettings.getAllFeatureValues() |
Map<EXMLParserFeature,Boolean> |
DOMReaderSettings.getAllFeatureValues() |
static Map<EXMLParserFeature,Boolean> |
DOMReaderDefaultSettings.getAllFeatureValues() |
Map<EXMLParserProperty,Object> |
SAXReaderSettings.getAllPropertyValues() |
static Map<EXMLParserProperty,Object> |
SAXReaderDefaultSettings.getAllPropertyValues() |
Map<EXMLParserProperty,Object> |
IBaseXMLReaderSettings.getAllPropertyValues() |
Map<EXMLParserProperty,Object> |
DOMReaderSettings.getAllPropertyValues() |
static Map<EXMLParserProperty,Object> |
DOMReaderDefaultSettings.getAllPropertyValues() |
| Modifier and Type | Method and Description |
|---|---|
char[] |
StringStreamResult.getAsCharArray() |
IResourceErrorGroup |
CollectingTransformErrorListener.getResourceErrors() |
| Modifier and Type | Method and Description |
|---|---|
Map<XPathFunctionKey,XPathFunction> |
MapBasedXPathFunctionResolver.getAllFunctions() |
Map<QName,?> |
MapBasedXPathVariableResolverQName.getAllVariables() |
Map<String,?> |
MapBasedXPathVariableResolver.getAllVariables() |
MapBasedXPathVariableResolverQName |
MapBasedXPathVariableResolverQName.getClone() |
MapBasedXPathVariableResolver |
MapBasedXPathVariableResolver.getClone() |
MapBasedXPathFunctionResolver |
MapBasedXPathFunctionResolver.getClone() |
Copyright © 2014–2016 Philip Helger. All rights reserved.