类 PartitionResult<R>


  • public class PartitionResult<R>
    extends java.lang.Object
    Partition result
    • 构造器概要

      构造器 
      构造器 说明
      PartitionResult​(R matched, R missed)  
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      boolean equals​(java.lang.Object o)  
      int hashCode()  
      R matched()
      The result reduced by elements pass the partition predicate
      R missed()
      The result reduced by elements miss the partition predicate
      java.lang.String toString()  
      • 从类继承的方法 java.lang.Object

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

      • PartitionResult

        public PartitionResult​(R matched,
                               R missed)
    • 方法详细资料

      • matched

        public R matched()
        The result reduced by elements pass the partition predicate
      • missed

        public R missed()
        The result reduced by elements miss the partition predicate
      • equals

        public boolean equals​(java.lang.Object o)
        覆盖:
        equals 在类中 java.lang.Object
      • hashCode

        public int hashCode()
        覆盖:
        hashCode 在类中 java.lang.Object
      • toString

        public java.lang.String toString()
        覆盖:
        toString 在类中 java.lang.Object