1 16 17 package org.apache.commons.beanutils.locale.converters; 18 19 import java.util.Locale ; 20 21 31 32 public class BigIntegerLocaleConverter extends DecimalLocaleConverter { 33 34 35 37 45 public BigIntegerLocaleConverter() { 46 47 this(false); 48 } 49 50 58 public BigIntegerLocaleConverter(boolean locPattern) { 59 60 this(Locale.getDefault(), locPattern); 61 } 62 63 70 public BigIntegerLocaleConverter(Locale locale) { 71 72 this(locale, false); 73 } 74 75 83 public BigIntegerLocaleConverter(Locale locale, boolean locPattern) { 84 85 this(locale, (String ) null, locPattern); 86 } 87 88 96 public BigIntegerLocaleConverter(Locale locale, String pattern) { 97 98 this(locale, pattern, false); 99 } 100 101 110 public BigIntegerLocaleConverter(Locale locale, String pattern, boolean locPattern) { 111 112 super(locale, pattern, locPattern); 113 } 114 115 124 public BigIntegerLocaleConverter(Object defaultValue) { 125 126 this(defaultValue, false); 127 } 128 129 138 public BigIntegerLocaleConverter(Object defaultValue, boolean locPattern) { 139 140 this(defaultValue, Locale.getDefault(), locPattern); 141 } 142 143 151 public BigIntegerLocaleConverter(Object defaultValue, Locale locale) { 152 153 this(defaultValue, locale, false); 154 } 155 156 165 public BigIntegerLocaleConverter(Object defaultValue, Locale locale, boolean locPattern) { 166 167 this(defaultValue, locale, null, locPattern); 168 } 169 170 179 public BigIntegerLocaleConverter(Object defaultValue, Locale locale, String pattern) { 180 181 this(defaultValue, locale, pattern, false); 182 } 183 184 194 public BigIntegerLocaleConverter(Object defaultValue, Locale locale, String pattern, boolean locPattern) { 195 196 super(defaultValue, locale, pattern); 197 } 198 } 199 | Popular Tags |