亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? criteria.java

?? 另外一種持久性o/m軟件
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
    {        throw new RuntimeException("getJoinL() in Criteria is no longer supported!");    }    /**     * Adds an 'IN' clause with the criteria supplied as an Object     * array.  For example:     *     * <p>     * FOO.NAME IN ('FOO', 'BAR', 'ZOW')     * <p>     *     * where 'values' contains three objects that evaluate to the     * respective strings above when .toString() is called.     *     * If a criterion for the requested column already exists, it is     * replaced.     *     * @param column The column to run the comparison on     * @param values An Object[] with the allowed values.     * @return A modified Criteria object.     */    public Criteria addIn(String column, Object[] values)    {        add(column, (Object) values, Criteria.IN);        return this;    }    /**     * Adds an 'IN' clause with the criteria supplied as an int array.     * For example:     *     * <p>     * FOO.ID IN ('2', '3', '7')     * <p>     *     * where 'values' contains those three integers.     *     * If a criterion for the requested column already exists, it is     * replaced.     *     * @param column The column to run the comparison on     * @param values An int[] with the allowed values.     * @return A modified Criteria object.     */    public Criteria addIn(String column, int[] values)    {        add(column, (Object) values, Criteria.IN);        return this;    }    /**     * Adds an 'IN' clause with the criteria supplied as a List.     * For example:     *     * <p>     * FOO.NAME IN ('FOO', 'BAR', 'ZOW')     * <p>     *     * where 'values' contains three objects that evaluate to the     * respective strings above when .toString() is called.     *     * If a criterion for the requested column already exists, it is     * replaced.     *     * @param column The column to run the comparison on     * @param values A List with the allowed values.     * @return A modified Criteria object.     */    public Criteria addIn(String column, List values)    {        add(column, (Object) values, Criteria.IN);        return this;    }    /**     * Adds a 'NOT IN' clause with the criteria supplied as an Object     * array.  For example:     *     * <p>     * FOO.NAME NOT IN ('FOO', 'BAR', 'ZOW')     * <p>     *     * where 'values' contains three objects that evaluate to the     * respective strings above when .toString() is called.     *     * If a criterion for the requested column already exists, it is     * replaced.     *     * @param column The column to run the comparison on     * @param values An Object[] with the disallowed values.     * @return A modified Criteria object.     */    public Criteria addNotIn(String column, Object[] values)    {        add(column, (Object) values, Criteria.NOT_IN);        return this;    }    /**     * Adds a 'NOT IN' clause with the criteria supplied as an int     * array.  For example:     *     * <p>     * FOO.ID NOT IN ('2', '3', '7')     * <p>     *     * where 'values' contains those three integers.     *     * If a criterion for the requested column already exists, it is     * replaced.     *     * @param column The column to run the comparison on     * @param values An int[] with the disallowed values.     * @return A modified Criteria object.     */    public Criteria addNotIn(String column, int[] values)    {        add(column, (Object) values, Criteria.NOT_IN);        return this;    }    /**     * Adds a 'NOT IN' clause with the criteria supplied as a List.     * For example:     *     * <p>     * FOO.NAME NOT IN ('FOO', 'BAR', 'ZOW')     * <p>     *     * where 'values' contains three objects that evaluate to the     * respective strings above when .toString() is called.     *     * If a criterion for the requested column already exists, it is     * replaced.     *     * @param column The column to run the comparison on     * @param values A List with the disallowed values.     * @return A modified Criteria object.     */    public Criteria addNotIn(String column, List values)    {        add(column, (Object) values, Criteria.NOT_IN);        return this;    }    /**     * Adds &quot;ALL &quot; to the SQL statement.     */    public void setAll()    {        selectModifiers.add(ALL.toString());    }    /**     * Adds &quot;DISTINCT &quot; to the SQL statement.     */    public void setDistinct()    {        selectModifiers.add(DISTINCT.toString());    }    /**     * Sets ignore case.     *     * @param b True if case should be ignored.     * @return A modified Criteria object.     */    public Criteria setIgnoreCase(boolean b)    {        ignoreCase = b;        return this;    }    /**     * Is ignore case on or off?     *     * @return True if case is ignored.     */    public boolean isIgnoreCase()    {        return ignoreCase;    }    /**     * Set single record?  Set this to <code>true</code> if you expect the query     * to result in only a single result record (the default behaviour is to     * throw a TorqueException if multiple records are returned when the query     * is executed).  This should be used in situations where returning multiple     * rows would indicate an error of some sort.  If your query might return     * multiple records but you are only interested in the first one then you     * should be using setLimit(1).     *     * @param b set to <code>true</code> if you expect the query to select just     * one record.     * @return A modified Criteria object.     */    public Criteria setSingleRecord(boolean b)    {        singleRecord = b;        return this;    }    /**     * Is single record?     *     * @return True if a single record is being returned.     */    public boolean isSingleRecord()    {        return singleRecord;    }    /**     * Set cascade.     *     * @param b True if cascade is set.     * @return A modified Criteria object.     */    public Criteria setCascade(boolean b)    {        cascade = b;        return this;    }    /**     * Is cascade set?     *     * @return True if cascade is set.     */    public boolean isCascade()    {        return cascade;    }    /**     * Set limit.     *     * @param limit An int with the value for limit.     * @return A modified Criteria object.     */    public Criteria setLimit(int limit)    {        this.limit = limit;        return this;    }    /**     * Get limit.     *     * @return An int with the value for limit.     */    public int getLimit()    {        return limit;    }    /**     * Set offset.     *     * @param offset An int with the value for offset.     * @return A modified Criteria object.     */    public Criteria setOffset(int offset)    {        this.offset = offset;        return this;    }    /**     * Get offset.     *     * @return An int with the value for offset.     */    public int getOffset()    {        return offset;    }    /**     * Add select column.     *     * @param name A String with the name of the select column.     * @return A modified Criteria object.     */    public Criteria addSelectColumn(String name)    {        selectColumns.add(name);        return this;    }    /**     * Get select columns.     *     * @return An StringStack with the name of the select     * columns.     */    public UniqueList getSelectColumns()    {        return selectColumns;    }    /**     * Get select modifiers.     *     * @return An UniqueList with the select modifiers.     */    public UniqueList getSelectModifiers()    {        return selectModifiers;    }    /**     * Add group by column name.     *     * @param groupBy The name of the column to group by.     * @return A modified Criteria object.     */    public Criteria addGroupByColumn(String groupBy)    {        groupByColumns.add(groupBy);        return this;    }    /**     * Add order by column name, explicitly specifying ascending.     *     * @param name The name of the column to order by.     * @return A modified Criteria object.     */    public Criteria addAscendingOrderByColumn(String name)    {        orderByColumns.add(name + ' ' + ASC);        return this;    }    /**     * Add order by column name, explicitly specifying descending.     *     * @param name The name of the column to order by.     * @return A modified Criteria object.     */    public Criteria addDescendingOrderByColumn(String name)    {        orderByColumns.add(name + ' ' + DESC);        return this;    }    /**     * Get order by columns.     *     * @return An UniqueList with the name of the order columns.     */    public UniqueList getOrderByColumns()    {        return orderByColumns;    }    /**     * Get group by columns.     *     * @return An UniqueList with the name of the groupBy clause.     */    public UniqueList getGroupByColumns()    {        return groupByColumns;    }    /**     * Get Having Criterion.     *     * @return A Criterion that is the having clause.     */    public Criterion getHaving()    {        return having;    }    /**     * Remove an object from the criteria.     *     * @param key A String with the key to be removed.     * @return The removed object.     */    public Object remove(String key)    {        Object foo = super.remove(key);        if (foo instanceof Criterion)        {            return ((Criterion) foo).getValue();        }        return foo;    }    /**     * Build a string representation of the Criteria.     *     * @return A String with the representation of the Criteria.     */    public String toString()    {        StringBuffer sb = new StringBuffer("Criteria:: ");        Iterator it = keySet().iterator();        while (it.hasNext())        {            String key = (String) it.next();            sb.append(key).append("<=>")                    .append(super.get(key).toString()).append(":  ");        }        try        {            sb.append("\nCurrent Query SQL (may not be complete or applicable): ")                    .append(BasePeer.createQueryDisplayString(this));        }        catch (Exception exc)        {        }        return sb.toString();    }    /**     * This method checks another Criteria to see if they contain     * the same attributes and hashtable entries.     */    public boolean equals(Object crit)    {        boolean isEquiv = false;        if (crit == null || !(crit instanceof Criteria))        {            isEquiv = false;        }        else if (this == crit)        {            isEquiv = true;        }        else if (this.size() == ((Criteria) crit).size())        {            Criteria criteria = (Criteria) crit;            if (this.offset == criteria.getOffset()                    && this.limit == criteria.getLimit()                    && ignoreCase == criteria.isIgnoreCase()                    && singleRecord == criteria.isSingleRecord()                    && cascade == criteria.isCascade()                    && dbName.equals(criteria.getDbName())                    && selectModifiers.equals(criteria.getSelectModifiers())                    && selectColumns.equals(criteria.getSelectColumns())                    && orderByColumns.equals(criteria.getOrderByColumns())                )            {                isEquiv = true;                for (Iterator it = criteria.keySet().iterator(); it.hasNext();)                {                    String key = (String) it.next();                    if (this.containsKey(key))                    {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美老肥妇做.爰bbww视频| 69久久99精品久久久久婷婷| 色先锋aa成人| 欧美片在线播放| 精品精品国产高清a毛片牛牛| 久久综合九色综合久久久精品综合| 国产精品卡一卡二| 日本不卡视频一二三区| 国产白丝网站精品污在线入口| 国产精品白丝av| 在线精品观看国产| 久久蜜臀中文字幕| 亚洲最大的成人av| 亚洲色图欧美激情| 久久精品国产99| 91精品国产综合久久久蜜臀图片| 一区二区在线观看视频 | 波多野结衣在线一区| 91精品国产色综合久久久蜜香臀| 中文字幕在线不卡| av在线播放成人| 中文字幕在线观看不卡| 国产成人av福利| 国产视频视频一区| 国产麻豆一精品一av一免费| 欧美大胆人体bbbb| 狠狠色伊人亚洲综合成人| 日韩午夜在线观看| 日韩—二三区免费观看av| 欧美日韩高清一区二区| 亚洲成人免费影院| 51精品国自产在线| 日本美女一区二区三区| 日韩一区二区三区四区五区六区 | 亚洲日本在线观看| 99r国产精品| 亚洲激情校园春色| 欧美日韩在线观看一区二区| 亚洲亚洲人成综合网络| 日本伦理一区二区| 亚洲狠狠爱一区二区三区| 欧美影院一区二区三区| 天堂久久一区二区三区| 91精品国产综合久久福利软件| 日本女人一区二区三区| 精品国产免费人成在线观看| 精品一区二区三区蜜桃| 国产欧美日本一区视频| 99热精品一区二区| 性欧美疯狂xxxxbbbb| 日韩欧美色综合网站| 国产成人在线色| 亚洲欧美激情插 | 精品一区二区免费视频| 国产欧美一区视频| 欧美伊人久久大香线蕉综合69| 日韩电影在线观看网站| 久久久国产一区二区三区四区小说 | 欧美日韩精品系列| 久久99久久99小草精品免视看| 久久久午夜精品理论片中文字幕| 91同城在线观看| 亚洲777理论| 国产欧美一区二区在线| 欧美性做爰猛烈叫床潮| 国产中文字幕一区| 亚洲青青青在线视频| 日韩天堂在线观看| 91在线观看成人| 国产在线视频一区二区| 亚洲欧美视频在线观看| 精品美女一区二区| 在线免费观看视频一区| 激情伊人五月天久久综合| 亚洲天堂av一区| 久久蜜桃一区二区| 88在线观看91蜜桃国自产| 成人高清免费在线播放| 蜜臀91精品一区二区三区| 亚洲美女在线一区| 久久久久久日产精品| 欧美日本国产视频| 97久久人人超碰| 国产精品一区二区三区四区| 日韩精品三区四区| 一区二区在线观看免费视频播放| 久久久国产午夜精品| 91精品国产欧美一区二区成人| 色偷偷久久一区二区三区| 国产成人啪免费观看软件| 天天操天天干天天综合网| 亚洲色图视频网站| 中文字幕精品一区二区精品绿巨人 | 国产目拍亚洲精品99久久精品| 欧美男女性生活在线直播观看| 不卡一区二区在线| 国产成人综合网站| 黄页视频在线91| 日韩高清不卡一区| 亚洲一区二区三区爽爽爽爽爽| 国产视频一区二区三区在线观看| 欧美岛国在线观看| 9191久久久久久久久久久| 一本一道综合狠狠老| 成人蜜臀av电影| 国产在线精品免费| 精品一区二区综合| 精品一区二区在线视频| 久久精品国产精品青草| 免费看黄色91| 奇米色一区二区三区四区| 日韩成人一级大片| 午夜国产不卡在线观看视频| 亚洲国产精品精华液网站| 一区二区三区在线免费播放| 亚洲免费毛片网站| 一区二区日韩电影| 亚洲bt欧美bt精品777| 午夜一区二区三区视频| 亚洲韩国一区二区三区| 首页国产丝袜综合| 久久国产精品色婷婷| 美女视频网站久久| 国产一区二区三区精品视频| 国产不卡视频在线观看| 国产.精品.日韩.另类.中文.在线.播放| 国产一区二区0| 99久久夜色精品国产网站| 91视视频在线观看入口直接观看www | 99久久精品一区二区| 91猫先生在线| 欧美片网站yy| 久久久国产精品麻豆| 国产精品久久久久天堂| 亚洲精品写真福利| 亚洲成人综合视频| 精品一区二区三区在线观看| 国产成人av电影在线播放| 91丨九色porny丨蝌蚪| 欧洲生活片亚洲生活在线观看| 欧美日韩国产一区二区三区地区| 777xxx欧美| 国产精品区一区二区三区| 亚洲黄色片在线观看| 久久er精品视频| 97久久久精品综合88久久| 91精品国产欧美一区二区成人| 久久久久国产一区二区三区四区| 日韩理论片一区二区| 蜜臀av一级做a爰片久久| 波多野结衣亚洲| 欧美日产在线观看| 欧美激情在线观看视频免费| 亚洲小说欧美激情另类| 国产精品88888| 欧美群妇大交群中文字幕| 国产日韩欧美亚洲| 日日欢夜夜爽一区| 99久久婷婷国产综合精品电影 | 久久99久久精品| 91成人在线观看喷潮| 精品国产精品网麻豆系列| 亚洲男人天堂一区| 国产精品一区久久久久| 欧美日韩视频在线一区二区 | 精品国产成人在线影院| 亚洲最新视频在线播放| 粉嫩嫩av羞羞动漫久久久 | 国产自产2019最新不卡| 在线一区二区观看| 中文字幕av在线一区二区三区| 蜜桃精品在线观看| 91福利国产精品| 国产精品国产三级国产aⅴ中文 | 精品裸体舞一区二区三区| 亚洲一区自拍偷拍| 91亚洲精品久久久蜜桃| 久久久99久久| 精品一区二区三区的国产在线播放| 欧美色男人天堂| 亚洲你懂的在线视频| 国产成人免费9x9x人网站视频| 欧美一区二区国产| 1024成人网| 欧美在线制服丝袜| 中文字幕第一区二区| 欧美va日韩va| 3d成人h动漫网站入口| 亚洲欧美日韩国产另类专区| 色综合色狠狠天天综合色| 一区二区三区色| 日韩欧美综合一区| 精品一区二区免费视频| 中文字幕乱码日本亚洲一区二区 | 91精品福利在线| 中文字幕一区二区三区视频| 欧美国产欧美亚州国产日韩mv天天看完整| 日本中文在线一区| 欧美一级黄色大片| 日韩不卡一区二区|