Uses of Class
com.vladris.maki.details.TypeGuard2
-
Packages that use TypeGuard2 Package Description com.vladris.maki com.vladris.maki.details -
-
Uses of TypeGuard2 in com.vladris.maki
Methods in com.vladris.maki with parameters of type TypeGuard2 Modifier and Type Method Description static <T1,T2>
Variant2<T1,T2>Variant2. make(T2 item, TypeGuard2... guard)
Creates a new Variant given an item of typeT2
.static <T1,T2,T3>
Variant3<T1,T2,T3>Variant3. make(T2 item, TypeGuard2... guard)
Creates a new Variant given an item of typeT2
.static <T1,T2,T3,T4>
Variant4<T1,T2,T3,T4>Variant4. make(T2 item, TypeGuard2... guard)
Creates a new Variant given an item of typeT2
.static <T1,T2,T3,T4,T5>
Variant5<T1,T2,T3,T4,T5>Variant5. make(T2 item, TypeGuard2... guard)
Creates a new Variant given an item of typeT2
.static <T1,T2,T3,T4,T5,T6>
Variant6<T1,T2,T3,T4,T5,T6>Variant6. make(T2 item, TypeGuard2... guard)
Creates a new Variant given an item of typeT2
.static <T1,T2,T3,T4,T5,T6,T7>
Variant7<T1,T2,T3,T4,T5,T6,T7>Variant7. make(T2 item, TypeGuard2... guard)
Creates a new Variant given an item of typeT2
.static <T1,T2,T3,T4,T5,T6,T7,T8>
Variant8<T1,T2,T3,T4,T5,T6,T7,T8>Variant8. make(T2 item, TypeGuard2... guard)
Creates a new Variant given an item of typeT2
.void
Variant2. set(T2 item, TypeGuard2... guard)
Assigns an item of typeT2
to the variant.void
Variant3. set(T2 item, TypeGuard2... guard)
Assigns an item of typeT2
to the variant.void
Variant4. set(T2 item, TypeGuard2... guard)
Assigns an item of typeT2
to the variant.void
Variant5. set(T2 item, TypeGuard2... guard)
Assigns an item of typeT2
to the variant.void
Variant6. set(T2 item, TypeGuard2... guard)
Assigns an item of typeT2
to the variant.void
Variant7. set(T2 item, TypeGuard2... guard)
Assigns an item of typeT2
to the variant.void
Variant8. set(T2 item, TypeGuard2... guard)
Assigns an item of typeT2
to the variant.Constructors in com.vladris.maki with parameters of type TypeGuard2 Constructor Description Either(TRight right, TypeGuard2... guard)
Creates a new instance of Either from an item of typeTRight
.Variant2(T2 item, TypeGuard2... guard)
Creates a new Variant instance from an item of typeT2
.Variant3(T2 item, TypeGuard2... guard)
Creates a new Variant instance from an item of typeT2
.Variant4(T2 item, TypeGuard2... guard)
Creates a new Variant instance from an item of typeT2
.Variant5(T2 item, TypeGuard2... guard)
Creates a new Variant instance from an item of typeT2
.Variant6(T2 item, TypeGuard2... guard)
Creates a new Variant instance from an item of typeT2
.Variant7(T2 item, TypeGuard2... guard)
Creates a new Variant instance from an item of typeT2
.Variant8(T2 item, TypeGuard2... guard)
Creates a new Variant instance from an item of typeT2
. -
Uses of TypeGuard2 in com.vladris.maki.details
Methods in com.vladris.maki.details that return TypeGuard2 Modifier and Type Method Description static TypeGuard2
TypeGuard2. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TypeGuard2[]
TypeGuard2. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-