1 16 17 package org.apache.commons.beanutils.locale.converters; 18 19 import java.util.Locale ; 20 21 22 32 33 public class LongLocaleConverter extends DecimalLocaleConverter { 34 35 36 38 46 public LongLocaleConverter() { 47 48 this(false); 49 } 50 51 59 public LongLocaleConverter(boolean locPattern) { 60 61 this(Locale.getDefault(), locPattern); 62 } 63 64 71 public LongLocaleConverter(Locale locale) { 72 73 this(locale, false); 74 } 75 76 84 public LongLocaleConverter(Locale locale, boolean locPattern) { 85 86 this(locale, (String ) null, locPattern); 87 } 88 89 97 public LongLocaleConverter(Locale locale, String pattern) { 98 99 this(locale, pattern, false); 100 } 101 102 111 public LongLocaleConverter(Locale locale, String pattern, boolean locPattern) { 112 113 super(locale, pattern, locPattern); 114 } 115 116 125 public LongLocaleConverter(Object defaultValue) { 126 127 this(defaultValue, false); 128 } 129 130 139 public LongLocaleConverter(Object defaultValue, boolean locPattern) { 140 141 this(defaultValue, Locale.getDefault(), locPattern); 142 } 143 144 152 public LongLocaleConverter(Object defaultValue, Locale locale) { 153 154 this(defaultValue, locale, false); 155 } 156 157 166 public LongLocaleConverter(Object defaultValue, Locale locale, boolean locPattern) { 167 168 this(defaultValue, locale, null, locPattern); 169 } 170 171 180 public LongLocaleConverter(Object defaultValue, Locale locale, String pattern) { 181 182 this(defaultValue, locale, pattern, false); 183 } 184 185 195 public LongLocaleConverter(Object defaultValue, Locale locale, String pattern, boolean locPattern) { 196 197 super(defaultValue, locale, pattern, locPattern); 198 } 199 } 200 | Popular Tags |