Home | History | Annotate | Download | only in annotations

Lines Matching full:tagvalue

18   public static boolean  getBoolean(String tagValue, boolean def) {
20 if (tagValue != null) {
21 result = Boolean.valueOf(tagValue);
26 public static int getInt(String tagValue, int def) {
28 if (tagValue != null) {
29 result = Integer.parseInt(tagValue);
34 public static String getString(String tagValue, String def) {
36 if (tagValue != null) {
37 result = tagValue;
42 public static long getLong(String tagValue, long def) {
44 if (tagValue != null) {
45 result = Long.parseLong(tagValue);
50 public static String[] getStringArray(String tagValue, String[] def) {
52 if (tagValue != null) {
53 result = Utils.stringToArray(tagValue);
59 public static Class[] getClassArray(String tagValue, Class[] def) {
62 if (tagValue != null) {
63 StringTokenizer st = new StringTokenizer(tagValue, " ,");