Skip navigation links
E G H I L N P R T W 

E

Either<Left,Right> - Class in net.markenwerk.commons.datastructures
An Either is one of two distinct simple immutable container class that holds a single value.
Entry<Key,Value> - Class in net.markenwerk.commons.datastructures
An Entry is a simple immutable container class that holds a key-value-pair.
Entry(Key, Value) - Constructor for class net.markenwerk.commons.datastructures.Entry
Creates a new Entry for the given key and value.
equals(Object) - Method in class net.markenwerk.commons.datastructures.Entry
 
equals(Object) - Method in class net.markenwerk.commons.datastructures.Left
 
equals(Object) - Method in class net.markenwerk.commons.datastructures.Pair
 
equals(Object) - Method in class net.markenwerk.commons.datastructures.Right
 
equals(Object) - Method in class net.markenwerk.commons.datastructures.Triple
 
equals(Object) - Method in class net.markenwerk.commons.datastructures.Tuple
 
equals(Object) - Method in class net.markenwerk.commons.datastructures.Wrapper
 

G

getFirst() - Method in class net.markenwerk.commons.datastructures.Pair
Returns the first value this Pair has been created with.
getFirst() - Method in class net.markenwerk.commons.datastructures.Triple
Returns the first value this Triple has been created with.
getFirst() - Method in class net.markenwerk.commons.datastructures.Tuple
Returns the first value this Tuple has been created with.
getKey() - Method in class net.markenwerk.commons.datastructures.Entry
Returns the key this Entry has been created with.
getLeft() - Method in class net.markenwerk.commons.datastructures.Either
The value of this Either, if it is a Either.isLeft() Either.
getLeft() - Method in class net.markenwerk.commons.datastructures.Left
 
getLeft() - Method in class net.markenwerk.commons.datastructures.Right
 
getRight() - Method in class net.markenwerk.commons.datastructures.Either
The value of this Either, if it is a Either.isRight() Either.
getRight() - Method in class net.markenwerk.commons.datastructures.Left
 
getRight() - Method in class net.markenwerk.commons.datastructures.Right
 
getSecond() - Method in class net.markenwerk.commons.datastructures.Pair
Returns the second value this Pair has been created with.
getSecond() - Method in class net.markenwerk.commons.datastructures.Triple
Returns the second value this Triple has been created with.
getSecond() - Method in class net.markenwerk.commons.datastructures.Tuple
Returns the second value this Tuple has been created with.
getThird() - Method in class net.markenwerk.commons.datastructures.Triple
Returns the third value this Triple has been created with.
getValue() - Method in class net.markenwerk.commons.datastructures.Entry
Returns the value this Entry has been created with.
getValue() - Method in class net.markenwerk.commons.datastructures.Wrapper
Returns the value this Wrapper has been created with.

H

hashCode() - Method in class net.markenwerk.commons.datastructures.Entry
 
hashCode() - Method in class net.markenwerk.commons.datastructures.Left
 
hashCode() - Method in class net.markenwerk.commons.datastructures.Pair
 
hashCode() - Method in class net.markenwerk.commons.datastructures.Right
 
hashCode() - Method in class net.markenwerk.commons.datastructures.Triple
 
hashCode() - Method in class net.markenwerk.commons.datastructures.Tuple
 
hashCode() - Method in class net.markenwerk.commons.datastructures.Wrapper
 

I

isLeft() - Method in class net.markenwerk.commons.datastructures.Either
Returns whether this Either is a Left Either.
isLeft() - Method in class net.markenwerk.commons.datastructures.Left
 
isLeft() - Method in class net.markenwerk.commons.datastructures.Right
 
isRight() - Method in class net.markenwerk.commons.datastructures.Either
Returns whether this Either is a Right Either.
isRight() - Method in class net.markenwerk.commons.datastructures.Left
 
isRight() - Method in class net.markenwerk.commons.datastructures.Right
 

L

Left<Payload,Right> - Class in net.markenwerk.commons.datastructures
An Left is one of two distinct simple immutable container class that holds a single value.
Left(Payload) - Constructor for class net.markenwerk.commons.datastructures.Left
Creates a new Left for the given value.

N

net.markenwerk.commons.datastructures - package net.markenwerk.commons.datastructures
 

P

Pair<Payload> - Class in net.markenwerk.commons.datastructures
A Pair is a simple immutable container class that holds two values of a similar type.
Pair(Payload, Payload) - Constructor for class net.markenwerk.commons.datastructures.Pair
Creates a new Pair for the given values.

R

Right<Left,Payload> - Class in net.markenwerk.commons.datastructures
An Right is one of two distinct simple immutable container class that holds a single value.
Right(Payload) - Constructor for class net.markenwerk.commons.datastructures.Right
Creates a new Right for the given value.

T

toString() - Method in class net.markenwerk.commons.datastructures.Entry
 
toString() - Method in class net.markenwerk.commons.datastructures.Left
 
toString() - Method in class net.markenwerk.commons.datastructures.Pair
 
toString() - Method in class net.markenwerk.commons.datastructures.Right
 
toString() - Method in class net.markenwerk.commons.datastructures.Triple
 
toString() - Method in class net.markenwerk.commons.datastructures.Tuple
 
toString() - Method in class net.markenwerk.commons.datastructures.Wrapper
 
Triple<First,Second,Third> - Class in net.markenwerk.commons.datastructures
A Triple is a simple immutable container class that holds three values.
Triple(First, Second, Third) - Constructor for class net.markenwerk.commons.datastructures.Triple
Creates a new Triple for the given values.
Tuple<First,Second> - Class in net.markenwerk.commons.datastructures
A Tuple is a simple immutable container class that holds two values.
Tuple(First, Second) - Constructor for class net.markenwerk.commons.datastructures.Tuple
Creates a new Tuple for the given values.

W

withFirst(Payload) - Method in class net.markenwerk.commons.datastructures.Pair
Creates a new Pair with the given first value and the second value from this Pair.
withFirst(First) - Method in class net.markenwerk.commons.datastructures.Triple
Creates a new Triple with the given first value and the other values from this Triple.
withFirst(First) - Method in class net.markenwerk.commons.datastructures.Tuple
Creates a new Tuple with the given first value and the second value from this Tuple.
withKey(Key) - Method in class net.markenwerk.commons.datastructures.Entry
Creates a new Entry with the given key and the value from this Entry.
withSecond(Payload) - Method in class net.markenwerk.commons.datastructures.Pair
Creates a new Pair with the given second value and the first value from this Pair.
withSecond(Second) - Method in class net.markenwerk.commons.datastructures.Triple
Creates a new Triple with the given second value and the other values from this Triple.
withSecond(Second) - Method in class net.markenwerk.commons.datastructures.Tuple
Creates a new Tuple with the given second value and the first value from this Tuple.
withThird(Third) - Method in class net.markenwerk.commons.datastructures.Triple
Creates a new Triple with the given third value and the other values from this Triple.
withValue(Value) - Method in class net.markenwerk.commons.datastructures.Entry
Creates a new Entry with the given value and the key from this Entry.
Wrapper<Payload> - Class in net.markenwerk.commons.datastructures
A Wrapper is a simple immutable container class that holds a single value.
Wrapper(Payload) - Constructor for class net.markenwerk.commons.datastructures.Wrapper
Creates a new Wrapper for the given value.
E G H I L N P R T W 
Skip navigation links

Copyright © 2015–2016 Markenwerk – Gesellschaft für markenbildende Maßnahmen mbH. All rights reserved.