Object AllCandidateUIDesigner.Companion
-
- All Implemented Interfaces:
public class AllCandidateUIDesigner.Companion
-
-
Field Summary
Fields Modifier and Type Field Description public final static AllCandidateUIDesignerDEFAULTpublic final static AllCandidateUIDesigner.BakedBAKED_DEFAULTpublic final static AllCandidateUIDesigner.CompanionINSTANCE
-
Method Summary
Modifier and Type Method Description final static AllCandidateUIDesigner.Bakedbake(AllCandidateUIDesigner $self, AllCandidateUIDesigner.Context context)Bakes this designer's values with the given context into an immutable Baked instance. final static AllCandidateUIDesigner.BakedbakeWithEmptyContext(AllCandidateUIDesigner $self)Bakes a context with Context.emptyContext. -
-
Method Detail
-
bake
final static AllCandidateUIDesigner.Baked bake(AllCandidateUIDesigner $self, AllCandidateUIDesigner.Context context)
Bakes this designer's values with the given context into an immutable Baked instance.
Executed in an asynchronous context internally; if values cannot be produced within 50 milliseconds, the default values are used instead.
// Kotlin val baked = designer.bake(context)// Java Baked baked = AllCandidateUIDesigner.bake(designer, context);- Parameters:
context- Context used to resolve designer values- Returns:
Baked Immutable snapshot of the resolved designer values
- Since:
5.2.0
-
bakeWithEmptyContext
final static AllCandidateUIDesigner.Baked bakeWithEmptyContext(AllCandidateUIDesigner $self)
Bakes a context with Context.emptyContext. Shorthand of
.bake(Context.emptyContext)// Kotlin val baked = designer.bakeWithEmptyContext()// Java Baked baked = AllCandidateUIDesigner.bakeWithEmptyContext(designer);- Returns:
Baked Immutable snapshot of the resolved designer values
-
-
-
-