public enum MethodType extends Enum<MethodType>
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static MethodType |
findMethodType(String key) |
abstract String |
getMethodKey() |
abstract boolean |
isValid(String property) |
abstract String |
toMethodString(String modifier,
String escapedMethodName,
String keyName) |
static MethodType |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static MethodType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final MethodType STRING
public static final MethodType REGEXP
public static final MethodType INTEGER
public static final MethodType LONG
public static final MethodType FLOAT
public static final MethodType DOUBLE
public static final MethodType BOOLEAN
public static final MethodType DATE
public static final MethodType TIMESTAMP
public static MethodType[] values()
for(MethodType c: MethodType.values()) System.out.println(c);
public static MethodType valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合public abstract String getMethodKey()
public abstract String toMethodString(String modifier, String escapedMethodName, String keyName)
public abstract boolean isValid(String property)
public static MethodType findMethodType(String key)
Copyright © 2014. All rights reserved.