Class QueryCondition

    • Constructor Detail

      • QueryCondition

        public QueryCondition()
      • QueryCondition

        public QueryCondition​(QueryCondition source)
        NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy, and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
    • Method Detail

      • getKey

        public String getKey()
        Get 筛选条件的key。
        Returns:
        Key 筛选条件的key。
      • setKey

        public void setKey​(String Key)
        Set 筛选条件的key。
        Parameters:
        Key - 筛选条件的key。
      • getOperator

        public String getOperator()
        Get 查询条件操作符,操作类型有:
      • equals: 等于;
      • notEquals: 不等于;
      • include: 包含;
      • notInclude: 不包含;
      • startWith: 开始的值是value;
      • notStartWith: 不以value的值开始;
      • endWith: 结尾是value值;
      • notEndWith: 不以value的值结尾。
Returns:
Operator 查询条件操作符,操作类型有:
  • equals: 等于;
  • notEquals: 不等于;
  • include: 包含;
  • notInclude: 不包含;
  • startWith: 开始的值是value;
  • notStartWith: 不以value的值开始;
  • endWith: 结尾是value值;
  • notEndWith: 不以value的值结尾。
  • Parameters:
    Operator - 查询条件操作符,操作类型有:
  • equals: 等于;
  • notEquals: 不等于;
  • include: 包含;
  • notInclude: 不包含;
  • startWith: 开始的值是value;
  • notStartWith: 不以value的值开始;
  • endWith: 结尾是value值;
  • notEndWith: 不以value的值结尾。