类 EntitySet<T>

java.lang.Object
org.anyline.entity.EntitySet<T>
所有已实现的接口:
Serializable, Iterable<T>, Collection<T>

public class EntitySet<T> extends Object implements Collection<T>, Serializable
另请参阅:
  • 字段详细资料

    • log

      protected static final org.slf4j.Logger log
  • 构造器详细资料

    • EntitySet

      public EntitySet()
  • 方法详细资料

    • setMetadatas

      public EntitySet setMetadatas(LinkedHashMap metadatas)
    • getMetadatas

      public LinkedHashMap<String,Column> getMetadatas()
    • getMetadata

      public Column getMetadata(String column)
    • getMetadataTypeName

      public String getMetadataTypeName(String column)
    • getMetadataType

      public Integer getMetadataType(String column)
    • getMetadataFullType

      public String getMetadataFullType(String column)
    • getMetadataClassName

      public String getMetadataClassName(String column)
    • gets

      public EntitySet<T> gets(String key, Object value)
    • gets

      public EntitySet<T> gets(Field field, Object value)
    • get

      public T get(int index)
    • set

      public DataSet set(String... keys)
    • isResult

      public boolean isResult()
    • setResult

      public void setResult(boolean result)
    • getCode

      public String getCode()
    • setCode

      public void setCode(String code)
    • getException

      public Exception getException()
    • setException

      public void setException(Exception exception)
    • getMessage

      public String getMessage()
    • setMessage

      public void setMessage(String message)
    • getNavi

      public PageNavi getNavi()
    • setNavi

      public void setNavi(PageNavi navi)
    • getHead

      public List<String> getHead()
    • setHead

      public void setHead(List<String> head)
    • getDatas

      public List<T> getDatas()
    • setDatas

      public void setDatas(List<T> datas)
    • getPrimaryKeys

      public List<String> getPrimaryKeys()
    • setPrimaryKeys

      public void setPrimaryKeys(List<String> primaryKeys)
    • getDatalink

      public String getDatalink()
    • setDatalink

      public void setDatalink(String datalink)
    • getDataSource

      public String getDataSource()
    • setDataSource

      public void setDataSource(String datasource)
    • getSchema

      public String getSchema()
    • setSchema

      public void setSchema(String schema)
    • getTable

      public String getTable()
    • setTable

      public void setTable(String table)
    • getCreateTime

      public long getCreateTime()
    • setCreateTime

      public void setCreateTime(long createTime)
    • getExpires

      public long getExpires()
    • setExpires

      public void setExpires(long expires)
    • isFromCache

      public boolean isFromCache()
    • setFromCache

      public void setFromCache(boolean fromCache)
    • isAsc

      public boolean isAsc()
    • setAsc

      public void setAsc(boolean asc)
    • isDesc

      public boolean isDesc()
    • setDesc

      public void setDesc(boolean desc)
    • size

      public int size()
      指定者:
      size 在接口中 Collection<T>
    • isEmpty

      public boolean isEmpty()
      指定者:
      isEmpty 在接口中 Collection<T>
    • contains

      public boolean contains(Object o)
      指定者:
      contains 在接口中 Collection<T>
    • iterator

      public Iterator<T> iterator()
      指定者:
      iterator 在接口中 Collection<T>
      指定者:
      iterator 在接口中 Iterable<T>
    • forEach

      public void forEach(Consumer<? super T> action)
      指定者:
      forEach 在接口中 Iterable<T>
    • toArray

      public Object[] toArray()
      指定者:
      toArray 在接口中 Collection<T>
    • toArray

      public <T1> T1[] toArray(T1[] a)
      指定者:
      toArray 在接口中 Collection<T>
    • add

      public boolean add(T t)
      指定者:
      add 在接口中 Collection<T>
    • remove

      public boolean remove(Object o)
      指定者:
      remove 在接口中 Collection<T>
    • containsAll

      public boolean containsAll(Collection<?> c)
      指定者:
      containsAll 在接口中 Collection<T>
    • addAll

      public boolean addAll(Collection<? extends T> c)
      指定者:
      addAll 在接口中 Collection<T>
    • removeAll

      public boolean removeAll(Collection<?> c)
      指定者:
      removeAll 在接口中 Collection<T>
    • removeIf

      public boolean removeIf(Predicate<? super T> filter)
      指定者:
      removeIf 在接口中 Collection<T>
    • retainAll

      public boolean retainAll(Collection<?> c)
      指定者:
      retainAll 在接口中 Collection<T>
    • clear

      public void clear()
      指定者:
      clear 在接口中 Collection<T>
    • spliterator

      public Spliterator<T> spliterator()
      指定者:
      spliterator 在接口中 Collection<T>
      指定者:
      spliterator 在接口中 Iterable<T>
    • stream

      public Stream<T> stream()
      指定者:
      stream 在接口中 Collection<T>
    • parallelStream

      public Stream<T> parallelStream()
      指定者:
      parallelStream 在接口中 Collection<T>