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