-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInputArg.java
20 lines (17 loc) · 1.52 KB
/
InputArg.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.komanov.stringformat;
public enum InputArg {
Tiny(1, ""),
VeryShort(1, "12345"),
Short(100, "string__10"),
Medium(10000, "string________________________32"),
Long(100000, "string___________________________________________________________________________________________100"),
VeryLong(10000000, "string______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________495"),
VeryLongSizeMiss(Integer.MAX_VALUE, "string______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________495"),
/*IDEA*/;
public final int value1;
public final String value2;
InputArg(int value1, String value2) {
this.value1 = value1;
this.value2 = value2;
}
}