Package io.quarkus.gizmo
Class Gizmo.JdkSet
- java.lang.Object
-
- io.quarkus.gizmo.Gizmo.StaticInvocationGenerator
-
- io.quarkus.gizmo.Gizmo.JdkIterable
-
- io.quarkus.gizmo.Gizmo.JdkCollection
-
- io.quarkus.gizmo.Gizmo.JdkSet
-
- Enclosing class:
- Gizmo
public static class Gizmo.JdkSet extends Gizmo.JdkCollection
- See Also:
Set
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classGizmo.JdkSet.JdkSetInstance-
Nested classes/interfaces inherited from class io.quarkus.gizmo.Gizmo.JdkCollection
Gizmo.JdkCollection.JdkCollectionInstance
-
Nested classes/interfaces inherited from class io.quarkus.gizmo.Gizmo.JdkIterable
Gizmo.JdkIterable.JdkIterableInstance
-
-
Field Summary
Fields Modifier and Type Field Description static MethodDescriptorCOPY_OFstatic MethodDescriptorOFstatic MethodDescriptorOF1static MethodDescriptorOF2static MethodDescriptorOF3static MethodDescriptorOFN-
Fields inherited from class io.quarkus.gizmo.Gizmo.JdkCollection
ADD, ADD_ALL, CLEAR, CONTAINS, IS_EMPTY, SIZE
-
Fields inherited from class io.quarkus.gizmo.Gizmo.JdkIterable
ITERATOR
-
Fields inherited from class io.quarkus.gizmo.Gizmo.StaticInvocationGenerator
target
-
-
Constructor Summary
Constructors Constructor Description JdkSet(BytecodeCreator target)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResultHandlecopyOf(ResultHandle collection)ResultHandleof()ResultHandleof(ResultHandle e1)ResultHandleof(ResultHandle... elements)ResultHandleof(ResultHandle e1, ResultHandle e2)ResultHandleof(ResultHandle e1, ResultHandle e2, ResultHandle e3)Gizmo.JdkSet.JdkSetInstanceon(ResultHandle set)-
Methods inherited from class io.quarkus.gizmo.Gizmo.StaticInvocationGenerator
setTarget
-
-
-
-
Field Detail
-
OF
public static final MethodDescriptor OF
-
OF1
public static final MethodDescriptor OF1
-
OF2
public static final MethodDescriptor OF2
-
OF3
public static final MethodDescriptor OF3
-
OFN
public static final MethodDescriptor OFN
-
COPY_OF
public static final MethodDescriptor COPY_OF
-
-
Constructor Detail
-
JdkSet
public JdkSet(BytecodeCreator target)
-
-
Method Detail
-
on
public Gizmo.JdkSet.JdkSetInstance on(ResultHandle set)
- Overrides:
onin classGizmo.JdkCollection- Returns:
- bytecode generator for instance methods
-
of
public ResultHandle of()
- Returns:
- the set
- See Also:
Set.of()
-
of
public ResultHandle of(ResultHandle e1)
- Returns:
- the set
- See Also:
Set.of(Object)
-
of
public ResultHandle of(ResultHandle e1, ResultHandle e2)
- Returns:
- the set
- See Also:
Set.of(Object, Object)
-
of
public ResultHandle of(ResultHandle e1, ResultHandle e2, ResultHandle e3)
- Returns:
- the set
- See Also:
Set.of(Object, Object, Object)
-
of
public ResultHandle of(ResultHandle... elements)
- Returns:
- the set
- See Also:
Set.of(Object...)
-
copyOf
public ResultHandle copyOf(ResultHandle collection)
- Returns:
- the set
- See Also:
Set.copyOf(Collection)
-
-