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

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

?? criteria.java

?? 另外一種持久性o/m軟件
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
    {        return getCriterion(name).getColumn();    }    /**     * Method to return a comparison String.     *     * @param key String name of the key.     * @return A String with the value of the object at key.     */    public SqlEnum getComparison(String key)    {        return getCriterion(key).getComparison();    }    /**     * Method to return a comparison String.     *     * @param table String name of table.     * @param column String name of column.     * @return A String with the value of the object at key.     */    public SqlEnum getComparison(String table, String column)    {        return getComparison(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return a Date.     *     * @param name column name (TABLE.COLUMN)     * @return A java.util.Date with the value of object at key.     */    public java.util.Date getDate(String name)    {        return (java.util.Date) getCriterion(name).getValue();    }    /**     * Convenience method to return a Date.     *     * @param table String name of table.     * @param column String name of column.     * @return A java.util.Date with the value of object at key.     */    public java.util.Date getDate(String table, String column)    {        return getDate(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Get the Database(Map) name.     *     * @return A String with the Database(Map) name.  By default, this     * is PoolBrokerService.DEFAULT.     */    public String getDbName()    {        return dbName;    }    /**     * Set the DatabaseMap name.  If <code>null</code> is supplied, uses value     * provided by <code>Torque.getDefaultDB()</code>.     *     * @param dbName A String with the Database(Map) name.     */    public void setDbName(String dbName)    {        this.dbName = (dbName == null ? Torque.getDefaultDB() : dbName.trim());    }    /**     * Convenience method to return a double.     *     * @param name A String with the name of the key.     * @return A double with the value of object at key.     */    public double getDouble(String name)    {        Object obj = getCriterion(name).getValue();        if (obj instanceof String)        {            return new Double((String) obj).doubleValue();        }        return ((Double) obj).doubleValue();    }    /**     * Convenience method to return a double.     *     * @param table String name of table.     * @param column String name of column.     * @return A double with the value of object at key.     */    public double getDouble(String table, String column)    {        return getDouble(new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return a float.     *     * @param name A String with the name of the key.     * @return A float with the value of object at key.     */    public float getFloat(String name)    {        Object obj = getCriterion(name).getValue();        if (obj instanceof String)        {            return new Float((String) obj).floatValue();        }        return ((Float) obj).floatValue();    }    /**     * Convenience method to return a float.     *     * @param table String name of table.     * @param column String name of column.     * @return A float with the value of object at key.     */    public float getFloat(String table, String column)    {        return getFloat(new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return an Integer.     *     * @param name A String with the name of the key.     * @return An Integer with the value of object at key.     */    public Integer getInteger(String name)    {        Object obj = getCriterion(name).getValue();        if (obj instanceof String)        {            return new Integer((String) obj);        }        return ((Integer) obj);    }    /**     * Convenience method to return an Integer.     *     * @param table String name of table.     * @param column String name of column.     * @return An Integer with the value of object at key.     */    public Integer getInteger(String table, String column)    {        return getInteger(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return an int.     *     * @param name A String with the name of the key.     * @return An int with the value of object at key.     */    public int getInt(String name)    {        Object obj = getCriterion(name).getValue();        if (obj instanceof String)        {            return new Integer((String) obj).intValue();        }        return ((Integer) obj).intValue();    }    /**     * Convenience method to return an int.     *     * @param table String name of table.     * @param column String name of column.     * @return An int with the value of object at key.     */    public int getInt(String table, String column)    {        return getInt(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return a BigDecimal.     *     * @param name A String with the name of the key.     * @return A BigDecimal with the value of object at key.     */    public BigDecimal getBigDecimal(String name)    {        Object obj = getCriterion(name).getValue();        if (obj instanceof String)        {            return new BigDecimal((String) obj);        }        return (BigDecimal) obj;    }    /**     * Convenience method to return a BigDecimal.     *     * @param table String name of table.     * @param column String name of column.     * @return A BigDecimal with the value of object at key.     */    public BigDecimal getBigDecimal(String table, String column)    {        return getBigDecimal(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return a long.     *     * @param name A String with the name of the key.     * @return A long with the value of object at key.     */    public long getLong(String name)    {        Object obj = getCriterion(name).getValue();        if (obj instanceof String)        {            return new Long((String) obj).longValue();        }        return ((Long) obj).longValue();    }    /**     * Convenience method to return a long.     *     * @param table String name of table.     * @param column String name of column.     * @return A long with the value of object at key.     */    public long getLong(String table, String column)    {        return getLong(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return a String.     *     * @param name A String with the name of the key.     * @return A String with the value of object at key.     */    public String getString(String name)    {        return (String) getCriterion(name).getValue();    }    /**     * Convenience method to return a String.     *     * @param table String name of table.     * @param column String name of column.     * @return A String with the value of object at key.     */    public String getString(String table, String column)    {        return getString(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Method to return a String table name.     *     * @param name A String with the name of the key.     * @return A String with the value of object at key.     */    public String getTableName(String name)    {        return getCriterion(name).getTable();    }    /**     * Convenience method to return a List.     *     * @param name A String with the name of the key.     * @return A List with the value of object at key.     */    public List getList(String name)    {        return (List) getCriterion(name).getValue();    }    /**     * Convenience method to return a List.     *     * @param table String name of table.     * @param column String name of column.     * @return A List with the value of object at key.     */    public List getList(String table, String column)    {        return getList(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Method to return the value that was added to Criteria.     *     * @param name A String with the name of the key.     * @return An Object with the value of object at key.     */    public Object getValue(String name)    {        return getCriterion(name).getValue();    }    /**     * Method to return the value that was added to Criteria.     *     * @param table String name of table.     * @param column String name of column.     * @return An Object with the value of object at key.     */    public Object getValue(String table, String column)    {        return getValue(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Convenience method to return an ObjectKey.     *     * @param name A String with the name of the key.     * @return An ObjectKey with the value of object at key.     */    public ObjectKey getObjectKey(String name)    {        return (ObjectKey) getCriterion(name).getValue();    }    /**     * Convenience method to return an ObjectKey.     *     * @param table String name of table.     * @param column String name of column.     * @return A String with the value of object at key.     */    public ObjectKey getObjectKey(String table, String column)    {        return getObjectKey(                new StringBuffer(table.length() + column.length() + 1)                .append(table).append('.').append(column)                .toString());    }    /**     * Overrides Hashtable get, so that the value placed in the     * Criterion is returned instead of the Criterion.     *     * @param key An Object.     * @return An Object.     */    public Object get(Object key)    {        return getValue((String) key);    }    /**     * Overrides Hashtable put, so that this object is returned     * instead of the value previously in the Criteria object.     * The reason is so that it more closely matches the behavior     * of the add() methods. If you want to get the previous value     * then you should first Criteria.get() it yourself. Note, if     * you attempt to pass in an Object that is not a String, it will     * throw a NPE. The reason for this is that none of the add()     * methods support adding anything other than a String as a key.     *     * @param key An Object. Must be instanceof String!     * @param value An Object.     * @throws NullPointerException if key != String or key/value is null.     * @return Instance of self.     */    public Object put(Object key, Object value)    {        if (!(key instanceof String))        {            throw new NullPointerException(                    "Criteria: Key must be a String object.");        }        return add((String) key, value);    }    /**     * Copies all of the mappings from the specified Map to this Criteria     * These mappings will replace any mappings that this Criteria had for any     * of the keys currently in the specified Map.     *     * if the map was another Criteria, its attributes are copied to this     * Criteria, overwriting previous settings.     *     * @param t Mappings to be stored in this map.     */    public synchronized void putAll(Map t)    {        Iterator i = t.entrySet().iterator();        while (i.hasNext())        {            Map.Entry e = (Map.Entry) i.next();            Object val = e.getValue();            if (val instanceof Criteria.Criterion)            {                super.put(e.getKey(), val);            }            else            {                put(e.getKey(), val);            }        }        if (t instanceof Criteria)        {            Criteria c = (Criteria) t;            this.joins = c.joins;        }        /* this would make a copy, not included           but might want to use some of it.           if (t instanceof Criteria)           {           Criteria c = (Criteria)t;           this.ignoreCase = c.ignoreCase;           this.singleRecord = c.singleRecord;           this.cascade = c.cascade;           this.selectModifiers = c.selectModifiers;           this.selectColumns = c.selectColumns;           this.orderByColumns = c.orderByColumns;           this.dbName = c.dbName;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久 天天综合| 国产91精品一区二区| 国产欧美日韩视频一区二区| 在线视频中文字幕一区二区| 国产精品影视在线观看| 性久久久久久久久| 亚洲人亚洲人成电影网站色| 国产亚洲一区二区三区在线观看 | 国产传媒久久文化传媒| 丝瓜av网站精品一区二区| 日韩毛片一二三区| 欧美国产精品一区| 日韩精品一区二区三区四区| 欧美亚男人的天堂| 精品成人a区在线观看| 国产不卡免费视频| 久久精品国产精品亚洲综合| 亚洲成人三级小说| 亚洲精品国久久99热| 国产精品对白交换视频| 日本一二三不卡| 久久久一区二区| 久久人人超碰精品| 日韩免费看网站| 欧美一区二区女人| 欧美精品日韩综合在线| 欧美日韩一级视频| 欧美性生活影院| 91黄色激情网站| 欧美性猛交xxxxxxxx| 91福利在线观看| 欧美亚洲一区二区三区四区| 在线精品观看国产| 欧美三片在线视频观看| 欧美三级资源在线| 欧美日韩精品电影| 欧美久久久久久久久中文字幕| 色综合天天综合| hitomi一区二区三区精品| 成人免费高清视频在线观看| 国产91精品在线观看| 成人永久免费视频| 99视频有精品| 91网站在线观看视频| 91精品福利在线| 欧美色视频在线| 欧美精品乱人伦久久久久久| 欧美一级黄色大片| 26uuu另类欧美| 国产欧美日韩在线观看| 综合久久一区二区三区| 亚洲综合久久av| 亚欧色一区w666天堂| 男人操女人的视频在线观看欧美| 美女视频网站黄色亚洲| 国产一区二区三区| 成人av网站大全| 日本电影欧美片| 欧美男男青年gay1069videost| 欧美一区二区三区日韩| 久久久亚洲欧洲日产国码αv| 国产精品你懂的在线欣赏| 亚洲欧洲在线观看av| 亚洲高清免费在线| 久久成人精品无人区| 国产一区在线观看视频| 99re免费视频精品全部| 欧洲一区二区三区在线| 日韩欧美自拍偷拍| 日本一区二区免费在线观看视频 | 欧美精品在线观看一区二区| 欧美成人aa大片| 国产精品美女久久久久久久| 亚洲成人高清在线| 韩国女主播一区| 色婷婷av久久久久久久| 日韩欧美在线不卡| 中文字幕亚洲精品在线观看| 丝袜亚洲另类欧美| 粉嫩aⅴ一区二区三区四区| 欧美视频在线不卡| 久久精品无码一区二区三区 | 国产综合色产在线精品| 91色九色蝌蚪| 久久综合网色—综合色88| 亚洲欧美国产毛片在线| 激情综合五月婷婷| 欧美在线影院一区二区| www国产精品av| 一区二区三区日韩精品视频| 韩国v欧美v日本v亚洲v| 欧美性生活一区| 久久久久久久久久久久久夜| 亚洲国产精品久久人人爱| 国产一区二区电影| 欧美高清dvd| 综合久久给合久久狠狠狠97色| 免费在线一区观看| 色婷婷av一区二区三区软件| 欧美成人vps| 午夜视频一区在线观看| 99精品1区2区| 国产日韩精品视频一区| 青青草国产精品亚洲专区无| 欧日韩精品视频| 中文av字幕一区| 九九热在线视频观看这里只有精品| 色婷婷综合五月| 中文字幕精品一区二区三区精品| 奇米四色…亚洲| 欧美三级电影一区| 最新不卡av在线| 国产丶欧美丶日本不卡视频| 欧美成va人片在线观看| 日韩精品一二三| 欧美性一二三区| 日韩美女精品在线| www.av精品| 国产网红主播福利一区二区| 精品一区二区三区在线视频| 制服丝袜中文字幕一区| 亚州成人在线电影| 成人免费一区二区三区在线观看| 亚洲在线观看免费| 色综合天天综合网国产成人综合天| 日本一区二区综合亚洲| 国产一区91精品张津瑜| 精品成人免费观看| 狠狠色2019综合网| 欧美精品一区二区不卡| 久久99久久精品| 久久夜色精品国产噜噜av| 麻豆一区二区三| 欧美一二三在线| 精品一区二区三区免费视频| 精品久久久久久最新网址| 紧缚奴在线一区二区三区| 精品国产免费人成电影在线观看四季| 日本不卡一二三| 日韩免费看的电影| 国产一区二区三区在线观看免费| 久久伊人中文字幕| 国产成人精品免费在线| 一区在线观看免费| 欧美在线短视频| 亚洲国产日韩在线一区模特| 欧美日韩国产经典色站一区二区三区| 亚洲高清中文字幕| 日韩欧美精品在线| 国产主播一区二区三区| 国产欧美日韩在线观看| 91啦中文在线观看| 午夜精品久久一牛影视| 日韩欧美一区二区在线视频| 黄网站免费久久| 中文字幕高清一区| 91蝌蚪porny成人天涯| 亚洲综合图片区| 日韩精品资源二区在线| 国产69精品久久99不卡| 亚洲精品午夜久久久| 欧美精品在线视频| 国产一区视频导航| 亚洲私人影院在线观看| 欧美色大人视频| 国产综合色视频| 亚洲视频在线一区观看| 欧美日韩高清影院| 国产精品小仙女| 亚洲在线观看免费视频| 欧美成人a在线| 99久久综合狠狠综合久久| 亚洲mv在线观看| 国产亚洲成年网址在线观看| 91蝌蚪porny九色| 麻豆中文一区二区| 亚洲色图在线看| 欧美va亚洲va香蕉在线| 91一区二区在线观看| 另类小说一区二区三区| 国产精品美女久久久久久久| 宅男噜噜噜66一区二区66| 国产成人福利片| 亚洲成人一二三| 欧美极品xxx| 欧美一区中文字幕| 99精品视频一区| 麻豆精品精品国产自在97香蕉| 中文字幕一区二区三区蜜月 | 国产精品女同一区二区三区| 91精品国产综合久久精品app| 国产a区久久久| 秋霞国产午夜精品免费视频| 成人免费视频在线观看| 日韩精品一区二区三区视频播放 | 亚洲午夜免费视频| 国产精品欧美精品| 精品久久久久久综合日本欧美| 日本韩国一区二区三区视频| 久久伊人中文字幕|