-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNumberStyle.java
414 lines (364 loc) · 11.4 KB
/
NumberStyle.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/*
* Copyright 2013 Stephen Asbury
* Released under the MIT license
* http://opensource.org/licenses/MIT
*/
import java.text.*;
/**
* Utility class to convert numbers to values like 4=d=D=iv=IV.
*/
public class NumberStyle
{
/**
* The maximum number for roman number conversion, 4000.
*/
public static final int ROMAN_MAX = 4000;
public static final char ROMAN_THOUSAND = 'M';
public static final char ROMAN_FIVE_HUNDRED = 'D';
public static final char ROMAN_HUNDRED = 'C';
public static final char ROMAN_FIFTY = 'L';
public static final char ROMAN_TEN = 'X';
public static final char ROMAN_FIVE = 'V';
public static final char ROMAN_ONE = 'I';
public static final long ENGLISH_MAX = 999000000000000L;
public static final String[] ONES = { "zero", "one", "two", "three",
"four", "five", "six", "seven", "eight", "nine", "ten", "eleven",
"twelve", "thirteen", "fourteen", "fifteen", "sixteen",
"seventeen", "eighteen", "nineteen" };
public static final String[] TENS = { "zero", "ten", "twenty", "thirty",
"forty", "fifty", "sixty", "seventy", "eighty", "ninety" };
public static final String HUNDRED = "hundred";
public static final String THOUSAND = "thousand";
public static final String MILLION = "million";
public static final String BILLION = "billion";
public static final String TRILLION = "trillion";
public static final String ALPHA = "ZABCDEFGHIJKLMNOPQRSTUVWXY";
/**
* Convert an int to a roman numeral in all caps.
*
* @param anInt
* The int to convert
* @return The string containing the roman numeral
*/
public static String convertToBigRoman(int anInt)
{
return convertToRoman(anInt, true);
}
/**
* Convert an int to a roman numeral in lower case.
*
* @param anInt
* The int to convert
* @return The string containing the roman numeral
*/
public static String convertToLittleRoman(int anInt)
{
return convertToRoman(anInt, false);
}
/**
* Convert an int to a roman numeral.
*
* @param anInt
* The int to convert
* @param withCaps
* Whether or not to use caps
* @return The string containing the roman numeral
*/
protected static String convertToRoman(int anInt, boolean withCaps)
{
boolean wasNeg = (anInt < 0);
int thousands, fivehundreds, hundreds, fifties, tens, fives, ones, i;
StringBuffer buffer = new StringBuffer();
if(wasNeg) anInt = -anInt;
if(anInt < ROMAN_MAX)
{
thousands = anInt / 1000;
fivehundreds = (anInt % 1000) / 500;
hundreds = (anInt % 500) / 100;
fifties = (anInt % 100) / 50;
tens = (anInt % 50) / 10;
fives = (anInt % 10) / 5;
ones = (anInt % 5);
if(thousands != 0)
{
for(i = thousands; i > 0; i--)
{
buffer.append(ROMAN_THOUSAND);
}
}
if(fivehundreds != 0)
{
if(hundreds == 4)
{
buffer.append(ROMAN_HUNDRED);
buffer.append(ROMAN_THOUSAND);
}
else
{
buffer.append(ROMAN_FIVE_HUNDRED);
for(i = hundreds; i > 0; i--)
{
buffer.append(ROMAN_HUNDRED);
}
}
}
else
{
if(hundreds == 4)
{
buffer.append(ROMAN_HUNDRED);
buffer.append(ROMAN_FIVE_HUNDRED);
}
else
{
for(i = hundreds; i > 0; i--)
{
buffer.append(ROMAN_HUNDRED);
}
}
}
if(fifties != 0)
{
if(tens == 4)
{
buffer.append(ROMAN_TEN);
buffer.append(ROMAN_HUNDRED);
}
else
{
buffer.append(ROMAN_FIFTY);
for(i = tens; i > 0; i--)
{
buffer.append(ROMAN_TEN);
}
}
}
else
{
if(tens == 4)
{
buffer.append(ROMAN_TEN);
buffer.append(ROMAN_FIFTY);
}
else
{
for(i = tens; i > 0; i--)
{
buffer.append(ROMAN_TEN);
}
}
}
if(fives != 0)
{
if(ones == 4)
{
buffer.append(ROMAN_ONE);
buffer.append(ROMAN_TEN);
}
else
{
buffer.append(ROMAN_FIVE);
for(i = ones; i > 0; i--)
{
buffer.append(ROMAN_ONE);
}
}
}
else
{
if(ones == 4)
{
buffer.append(ROMAN_ONE);
buffer.append(ROMAN_FIVE);
}
else
{
for(i = ones; i > 0; i--)
{
buffer.append(ROMAN_ONE);
}
}
}
}
if(wasNeg) buffer.insert(0, '-');
String retVal = buffer.toString();
if(!withCaps) retVal = retVal.toLowerCase();
return retVal;
}
/**
* Convert an int to a string equivalent, like 4->D.
*
* @param anInt
* The int to convert
* @return The string, in Upper case
*/
public static String convertToAlpha(int anInt)
{
boolean wasNeg = (anInt < 0);
StringBuffer buffer = new StringBuffer();
int mod, div;
if(wasNeg)
anInt = -anInt;
mod = anInt % 26;
div = anInt / 26;
if(mod == 0)
div -= 1;
while(anInt > 0)
{
buffer.insert(0, ALPHA.charAt(mod));
anInt = div;
div = (anInt / 26);
mod = anInt % 26;
if(mod == 0)
div -= 1;
}
if(wasNeg)
buffer.insert(0, '-');
return buffer.toString();
}
/**
* Convert an int to a string equivalent, like 4->D.
*
* @param anInt
* The int to convert
* @return The string, in lower case
*/
public static String convertToLittleAlpha(int anInt)
{
String retVal = convertToAlpha(anInt);
return retVal.toLowerCase();
}
public static String convertToEnglish(int anInt)
{
return convertToEnglish((long) anInt);
}
public static String convertToEnglish(long anInt)
{
boolean wasNeg = (anInt < 0);
long trillions, billions, millions, thousands, hundreds, tens, ones, i;
StringBuffer buffer = new StringBuffer();
boolean gotOne = false;
if(wasNeg)
anInt = -anInt;
if(anInt < ENGLISH_MAX)
{
trillions = anInt / 1000000000000L;
billions = anInt % 1000000000000L / 1000000000;
millions = anInt % 1000000000 / 1000000;
thousands = anInt % 1000000 / 1000;
ones = anInt % 1000;
if(trillions != 0)
{
formatToEnglish(trillions, buffer);
buffer.append(" ");
buffer.append(TRILLION);
gotOne = true;
}
if(billions != 0)
{
if(gotOne) buffer.append(", ");
formatToEnglish(billions, buffer);
buffer.append(" ");
buffer.append(BILLION);
gotOne = true;
}
if(millions != 0)
{
if(gotOne) buffer.append(", ");
formatToEnglish(millions, buffer);
buffer.append(" ");
buffer.append(MILLION);
gotOne = true;
}
if(thousands != 0)
{
if(gotOne) buffer.append(", ");
formatToEnglish(thousands, buffer);
buffer.append(" ");
buffer.append(THOUSAND);
gotOne = true;
}
if(ones == 0 && !gotOne)
{
formatToEnglish(ones, buffer);
}
else if(ones != 0)
{
if(gotOne) buffer.append(", ");
formatToEnglish(ones, buffer);
}
}
if(wasNeg)
buffer.insert(0, "negative ");
return buffer.toString();
}
protected static void formatToEnglish(long number, StringBuffer buffer)
{
long hundreds = number / 100;
long tens = number % 100 / 10;
long ones = number % 10;
boolean gotOne = false;
if(hundreds > 0)
{
buffer.append(ONES[(int) hundreds]);
buffer.append(" ");
buffer.append(HUNDRED);
gotOne = true;
}
if(tens > 1)
{
if(gotOne)
buffer.append(" ");
buffer.append(TENS[(int) tens]);
gotOne = true;
}
if(tens == 1)
{
if(gotOne)
buffer.append(" ");
buffer.append(ONES[(int) (ones + 10)]);
}
else if(ones > 0)
{
if(gotOne)
buffer.append(" ");
buffer.append(ONES[(int) ones]);
}
else if(number == 0)
{
buffer.append(ONES[0]);
}
}
public static String convertToReadableMemorySize(long size)
{
long megabytes = (long) Math.pow(2, 20);
long kilobytes = (long) Math.pow(2, 10);
long gigabytes = (long) Math.pow(2, 30);
NumberFormat format = NumberFormat.getNumberInstance();
format.setMaximumFractionDigits(3);
double relSize = 0.0d;
long absSize = Math.abs(size);
String id = "";
if((absSize / gigabytes) >= 1)
{
relSize = (double) absSize / (double) gigabytes;
id = "GB";
}
else if((absSize / megabytes) >= 1)
{
relSize = (double) absSize / (double) megabytes;
id = "MB";
}
else if((absSize / kilobytes) >= 1)
{
relSize = (double) absSize / (double) kilobytes;
id = "KB";
}
else
{
relSize = absSize;
id = "b";
}
return format.format((size < 0 ? -1 : 1) * relSize) + id;
}
}