C E G H I K M N P R S T V 

C

com.github.fracpete.javautils - package com.github.fracpete.javautils
 
com.github.fracpete.javautils.enumerate - package com.github.fracpete.javautils.enumerate
 
com.github.fracpete.javautils.examples - package com.github.fracpete.javautils.examples
 
com.github.fracpete.javautils.struct - package com.github.fracpete.javautils.struct
 

E

enumerate(E[]) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an array that combines index (starting at 0 with step 1) and value of the array item in the returned container object (Enumeration).
enumerate(E[], int) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an array that combines index (starting at "start" with step 1) and value of the array item in the returned container object (Enumeration).
enumerate(E[], int, int) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an array that combines index (starting at "start" with step size "step") and value of the array item in the returned container object (Enumeration).
enumerate(Iterable<E>) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an Iterable that combines index (starting at 0 with step 1) and value of the Iterable in the returned container object (Enumeration).
enumerate(Iterable<E>, int) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an Iterable that combines index (starting at "start" with step 1) and value of the Iterable in the returned container object (Enumeration).
enumerate(Iterable<E>, int, int) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an Iterable that combines index (starting at "start" with step size "step") and value of the Iterable in the returned container object (Enumeration).
enumerate(Iterator<E>) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an Iterator that combines index (starting at 0 with step 1) and value of the Iterable in the returned container object (Enumeration).
enumerate(Iterator<E>, int) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an Iterator that combines index (starting at "start" with step 1) and value of the Iterable in the returned container object (Enumeration).
enumerate(Iterator<E>, int, int) - Static method in class com.github.fracpete.javautils.Enumerate
Returns an Iterable wrapper around an Iterator that combines index (starting at "start" with step size "step") and value of the Iterable in the returned container object (Enumeration).
Enumerate - Class in com.github.fracpete.javautils
For generating a tuple of index and value for objects which classes implemented Iterable.
Enumerate() - Constructor for class com.github.fracpete.javautils.Enumerate
 
Enumerated<E> - Class in com.github.fracpete.javautils.enumerate
Container class for enumerating Iterable objects.
Enumerated(int, E) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerated
Initializes the container.
EnumerateExamples - Class in com.github.fracpete.javautils.examples
Examples for using the "Enumerate.enumerate" methods.
EnumerateExamples() - Constructor for class com.github.fracpete.javautils.examples.EnumerateExamples
 
Enumeration<T> - Class in com.github.fracpete.javautils.enumerate
Provides an enumerated wrapper around an Iterable/Iterator object.
Enumeration(Iterable<T>) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(Iterable<T>, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(Iterable<T>, int, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(Iterator<T>) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(Iterator<T>, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(Iterator<T>, int, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(T[]) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(T[], int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumeration(T[], int, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumeration
Initializes the wrapper.
Enumerator<T> - Class in com.github.fracpete.javautils.enumerate
Wraps an Iterator around an iterator.
Enumerator(Iterable<T>) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the iterator.
Enumerator(Iterable<T>, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the iterator.
Enumerator(Iterable<T>, int, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the iterator.
Enumerator(Iterator<T>) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the iterator.
Enumerator(Iterator<T>, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the iterator.
Enumerator(Iterator<T>, int, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the iterator.
Enumerator(T[]) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the array.
Enumerator(T[], int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the array.
Enumerator(T[], int, int) - Constructor for class com.github.fracpete.javautils.enumerate.Enumerator
Initializes the array.

G

getStart() - Method in class com.github.fracpete.javautils.enumerate.Enumerator
Returns the starting index.
getStep() - Method in class com.github.fracpete.javautils.enumerate.Enumerator
Returns the step size between indices of elements.

H

hasNext() - Method in class com.github.fracpete.javautils.enumerate.Enumerator
Whether there is another element available.

I

index - Variable in class com.github.fracpete.javautils.enumerate.Enumerated
the index.
iterator() - Method in class com.github.fracpete.javautils.enumerate.Enumeration
Returns the iterator.

K

key - Variable in class com.github.fracpete.javautils.struct.MapStruct
the key.

M

m_Index - Variable in class com.github.fracpete.javautils.enumerate.Enumerator
the index.
m_Iterator - Variable in class com.github.fracpete.javautils.enumerate.Enumeration
the iterator to wrap.
m_Iterator - Variable in class com.github.fracpete.javautils.enumerate.Enumerator
the base iterable object.
m_Start - Variable in class com.github.fracpete.javautils.enumerate.Enumeration
the starting index.
m_Start - Variable in class com.github.fracpete.javautils.enumerate.Enumerator
the starting index.
m_Step - Variable in class com.github.fracpete.javautils.enumerate.Enumeration
the step size.
m_Step - Variable in class com.github.fracpete.javautils.enumerate.Enumerator
the step size.
main(String[]) - Static method in class com.github.fracpete.javautils.examples.EnumerateExamples
 
main(String[]) - Static method in class com.github.fracpete.javautils.examples.StructExamples
 
MapStruct<K,V> - Class in com.github.fracpete.javautils.struct
Simple container class for key/value pairs of maps.
MapStruct(K, V) - Constructor for class com.github.fracpete.javautils.struct.MapStruct
Initializes the container.

N

next() - Method in class com.github.fracpete.javautils.enumerate.Enumerator
Returns the next element wrapper.

P

pairs(Map<T1, T2>) - Static method in class com.github.fracpete.javautils.Struct
Wraps the key/value pairs of a map in a struct container.

R

return2int(Integer) - Static method in class com.github.fracpete.javautils.examples.StructExamples
 

S

struct(T1, T2) - Static method in class com.github.fracpete.javautils.Struct
Wraps two elements in struct container.
struct(T1, T2, T3) - Static method in class com.github.fracpete.javautils.Struct
Wraps three elements in struct container.
struct(T1, T2, T3, T4) - Static method in class com.github.fracpete.javautils.Struct
Wraps four elements in struct container.
struct(T1, T2, T3, T4, T5) - Static method in class com.github.fracpete.javautils.Struct
Wraps five elements in struct container.
Struct - Class in com.github.fracpete.javautils
For wrapping multiple objects in container objects.
Struct() - Constructor for class com.github.fracpete.javautils.Struct
 
Struct2<T1,T2> - Class in com.github.fracpete.javautils.struct
Simple container class for two values.
Struct2(T1, T2) - Constructor for class com.github.fracpete.javautils.struct.Struct2
Initializes the container.
Struct3<T1,T2,T3> - Class in com.github.fracpete.javautils.struct
Simple container class for three values.
Struct3(T1, T2, T3) - Constructor for class com.github.fracpete.javautils.struct.Struct3
Initializes the container.
Struct4<T1,T2,T3,T4> - Class in com.github.fracpete.javautils.struct
Simple container class for four values.
Struct4(T1, T2, T3, T4) - Constructor for class com.github.fracpete.javautils.struct.Struct4
Initializes the container.
Struct5<T1,T2,T3,T4,T5> - Class in com.github.fracpete.javautils.struct
Simple container class for five values.
Struct5(T1, T2, T3, T4, T5) - Constructor for class com.github.fracpete.javautils.struct.Struct5
Initializes the container.
StructExamples - Class in com.github.fracpete.javautils.examples
Examples for using structs.
StructExamples() - Constructor for class com.github.fracpete.javautils.examples.StructExamples
 

T

toString() - Method in class com.github.fracpete.javautils.enumerate.Enumerated
Simple string representation.
toString() - Method in class com.github.fracpete.javautils.enumerate.Enumeration
Returns a simple string representation of the wrapper.
toString() - Method in class com.github.fracpete.javautils.enumerate.Enumerator
Returns a simple string representation of the wrapper.
toString() - Method in class com.github.fracpete.javautils.struct.MapStruct
Simple string representation.
toString() - Method in class com.github.fracpete.javautils.struct.Struct2
Simple string representation.
toString() - Method in class com.github.fracpete.javautils.struct.Struct3
Simple string representation.
toString() - Method in class com.github.fracpete.javautils.struct.Struct4
Simple string representation.
toString() - Method in class com.github.fracpete.javautils.struct.Struct5
Simple string representation.

V

value - Variable in class com.github.fracpete.javautils.enumerate.Enumerated
the associated value.
value - Variable in class com.github.fracpete.javautils.struct.MapStruct
the value.
value1 - Variable in class com.github.fracpete.javautils.struct.Struct2
the first value.
value1 - Variable in class com.github.fracpete.javautils.struct.Struct3
the first value.
value1 - Variable in class com.github.fracpete.javautils.struct.Struct4
the first value.
value1 - Variable in class com.github.fracpete.javautils.struct.Struct5
the first value.
value2 - Variable in class com.github.fracpete.javautils.struct.Struct2
the second value.
value2 - Variable in class com.github.fracpete.javautils.struct.Struct3
the second value.
value2 - Variable in class com.github.fracpete.javautils.struct.Struct4
the second value.
value2 - Variable in class com.github.fracpete.javautils.struct.Struct5
the second value.
value3 - Variable in class com.github.fracpete.javautils.struct.Struct3
the third value.
value3 - Variable in class com.github.fracpete.javautils.struct.Struct4
the third value.
value3 - Variable in class com.github.fracpete.javautils.struct.Struct5
the third value.
value4 - Variable in class com.github.fracpete.javautils.struct.Struct4
the fourth value.
value4 - Variable in class com.github.fracpete.javautils.struct.Struct5
the fourth value.
value5 - Variable in class com.github.fracpete.javautils.struct.Struct5
the five value.
C E G H I K M N P R S T V 
Skip navigation links

Copyright © 2019 University of Waikato, Hamilton, NZ. All Rights Reserved.