类 ReflectiveDiffBuilder<T>

  • 所有已实现的接口:
    org.apache.commons.lang3.builder.Builder<DiffResult<T>>

    @Experimental
    public class ReflectiveDiffBuilder<T>
    extends java.lang.Object
    implements org.apache.commons.lang3.builder.Builder<DiffResult<T>>
    Assists in comparing Diffable objects with reflection.

    Inspired by: https://github.com/apache/commons-lang/blob/master/src/main/java/org/apache/commons/lang3/builder/ReflectionDiffBuilder.java

    • 构造器概要

      构造器 
      构造器 说明
      ReflectiveDiffBuilder​(org.apache.flink.kubernetes.operator.api.spec.KubernetesDeploymentMode deploymentMode, T before, T after)  
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      DiffResult<T> build()  
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • ReflectiveDiffBuilder

        public ReflectiveDiffBuilder​(org.apache.flink.kubernetes.operator.api.spec.KubernetesDeploymentMode deploymentMode,
                                     @NonNull
                                     T before,
                                     @NonNull
                                     T after)
    • 方法详细资料

      • build

        public DiffResult<T> build()
        指定者:
        build 在接口中 org.apache.commons.lang3.builder.Builder<T>