1 | CrLf newInstance() {↵ | | 1 | AddAsisRemove newInstance() {↵
|
2 | return newInstance(getValue());↵ | | 2 | return newInstance(getValue());↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Create an instance of this enumerated value based on the string value.↵ | | 5 | * Create an instance of this enumerated value based on the string value.↵
|
6 | * @param value the value to use.↵ | | 6 | * @param value the value to use.↵
|
7 | * @return an enumerated instance.↵ | | 7 | * @return an enumerated instance.↵
|
8 | */↵ | | 8 | */↵
|
9 | public static CrLf newInstance(String value) {↵ | | 9 | public static AddAsisRemove newInstance(String value) {↵
|
10 | CrLf c = new CrLf();↵ | | 10 | AddAsisRemove a = new AddAsisRemove();↵
|
11 | c.setValue(value);↵ | | 11 | a.setValue(value);↵
|
12 | return c;↵ | | 12 | return a;↵
|
13 | | | 13 |
|