Class GizmoMemberDescriptor

java.lang.Object
org.optaplanner.core.impl.domain.common.accessor.gizmo.GizmoMemberDescriptor

public final class GizmoMemberDescriptor extends Object
Describe and provide simplified/unified access for Member.
  • Constructor Details

    • GizmoMemberDescriptor

      public GizmoMemberDescriptor(Member member)
    • GizmoMemberDescriptor

      public GizmoMemberDescriptor(String name, io.quarkus.gizmo.FieldDescriptor fieldDescriptor, Class<?> declaringClass)
    • GizmoMemberDescriptor

      public GizmoMemberDescriptor(String name, io.quarkus.gizmo.MethodDescriptor memberDescriptor, io.quarkus.gizmo.MethodDescriptor metadataDescriptor, Class<?> declaringClass, io.quarkus.gizmo.MethodDescriptor setterDescriptor)
    • GizmoMemberDescriptor

      public GizmoMemberDescriptor(String name, io.quarkus.gizmo.MethodDescriptor memberDescriptor, Class<?> declaringClass, io.quarkus.gizmo.MethodDescriptor setterDescriptor)
    • GizmoMemberDescriptor

      public GizmoMemberDescriptor(String name, io.quarkus.gizmo.MethodDescriptor memberDescriptor, io.quarkus.gizmo.FieldDescriptor metadataDescriptor, Class<?> declaringClass, io.quarkus.gizmo.MethodDescriptor setterDescriptor)
  • Method Details

    • whenIsField

      public GizmoMemberDescriptor whenIsField(Consumer<io.quarkus.gizmo.FieldDescriptor> fieldDescriptorConsumer)
      If the member accessor is a field, pass the member's field descriptor to the provided consumer. Otherwise, do nothing. Returns self for chaining.
      Parameters:
      fieldDescriptorConsumer - What to do if the member a field.
      Returns:
      this
    • whenIsMethod

      public GizmoMemberDescriptor whenIsMethod(Consumer<io.quarkus.gizmo.MethodDescriptor> methodDescriptorConsumer)
      If the member accessor is a method, pass the member's method descriptor to the provided consumer. Otherwise, do nothing. Returns self for chaining.
      Parameters:
      methodDescriptorConsumer - What to do if the member a method.
      Returns:
      this
    • readMemberValue

      public io.quarkus.gizmo.ResultHandle readMemberValue(io.quarkus.gizmo.BytecodeCreator bytecodeCreator, io.quarkus.gizmo.ResultHandle thisObj)
    • writeMemberValue

      public boolean writeMemberValue(io.quarkus.gizmo.BytecodeCreator bytecodeCreator, io.quarkus.gizmo.ResultHandle thisObj, io.quarkus.gizmo.ResultHandle newValue)
      Write the bytecode for writing to this member. If there is no setter, it write the bytecode for throwing the exception. Return true if it was able to write the member value.
      Parameters:
      bytecodeCreator - the bytecode creator to use
      thisObj - the bean to write the new value to
      newValue - to new value of the member
      Returns:
      True if it was able to write the member value, false otherwise
    • whenMetadataIsOnField

      public GizmoMemberDescriptor whenMetadataIsOnField(Consumer<io.quarkus.gizmo.FieldDescriptor> fieldDescriptorConsumer)
      If the member metadata is on a field, pass the member's field descriptor to the provided consumer. Otherwise, do nothing. Returns self for chaining.
      Parameters:
      fieldDescriptorConsumer - What to do if the member a field.
      Returns:
      this
    • whenMetadataIsOnMethod

      public GizmoMemberDescriptor whenMetadataIsOnMethod(Consumer<io.quarkus.gizmo.MethodDescriptor> methodDescriptorConsumer)
      If the member metadata is on a method, pass the member's method descriptor to the provided consumer. Otherwise, do nothing. Returns self for chaining.
      Parameters:
      methodDescriptorConsumer - What to do if the member a method.
      Returns:
      this
    • getDeclaringClassName

      public String getDeclaringClassName()
      Returns the declaring class name of the member in descriptor format. For instance, the declaring class name of Object.toString() is "java/lang/Object".
      Returns:
      Returns the declaring class name of the member in descriptor format
    • getSetter

      public Optional<io.quarkus.gizmo.MethodDescriptor> getSetter()
    • getName

      public String getName()
    • getTypeName

      public String getTypeName()
      Returns the member type (for fields) / return type (for methods) name. The name does not include generic information.
    • getType

      public Type getType()
    • toString

      public String toString()
      Overrides:
      toString in class Object