类 SetAbstractState<T>

    • 构造器概要

      构造器 
      构造器 说明
      SetAbstractState​(java.util.Collection<? extends T> c)
      Create a set abstract state from a collection.
      SetAbstractState​(T... items)
      Create a set abstract state from its elements.
    • 方法概要

      所有方法 静态方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      static <T> SetAbstractState<T> bottom()  
      SetAbstractState<T> copy()
      Creates a copy of itself.
      boolean isLessOrEqual​(SetAbstractState<T> abstractState)
      Compares itself to the abstractState (i.e., compare the states on the partial order provided by the domain of the analysis).
      SetAbstractState<T> join​(SetAbstractState<T> abstractState)
      Computes a join over itself and another abstract state abstractState (i.e., finds the least upper bound on the semilattice).
      • 从类继承的方法 java.util.HashSet

        add, clear, clone, contains, isEmpty, iterator, remove, size, spliterator
      • 从类继承的方法 java.util.AbstractSet

        equals, hashCode, removeAll
      • 从类继承的方法 java.util.AbstractCollection

        addAll, containsAll, retainAll, toArray, toArray, toString
      • 从类继承的方法 java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
      • 从接口继承的方法 java.util.Collection

        parallelStream, removeIf, stream, toArray
      • 从接口继承的方法 java.lang.Iterable

        forEach
      • 从接口继承的方法 java.util.Set

        addAll, containsAll, equals, hashCode, removeAll, retainAll, toArray, toArray
    • 构造器详细资料

      • SetAbstractState

        public SetAbstractState​(T... items)
        Create a set abstract state from its elements.
        参数:
        items - an array of elements
      • SetAbstractState

        public SetAbstractState​(java.util.Collection<? extends T> c)
        Create a set abstract state from a collection.
        参数:
        c - a collection of elements