|
9 | 9 | /**
|
10 | 10 | * Argument validation result coming from {@link ArgumentProcessor#validate(String[])}
|
11 | 11 | */
|
12 |
| -public final class ValidationResult |
13 |
| -{ |
14 |
| - /** |
15 |
| - * A violation indicating required argument is missing |
16 |
| - */ |
17 |
| - public static final class ArgumentMissing |
18 |
| - extends Violation |
19 |
| - { |
20 |
| - } |
21 |
| - |
22 |
| - /** |
23 |
| - * Type of violation where a required option is missing |
24 |
| - */ |
25 |
| - public static final class OptionMissing |
26 |
| - extends Violation |
27 |
| - { |
28 |
| - private final String optionName; |
| 12 | +public final class ValidationResult { |
| 13 | + /** |
| 14 | + * A violation indicating required argument is missing |
| 15 | + */ |
| 16 | + public static final class ArgumentMissing extends Violation { |
| 17 | + } |
29 | 18 |
|
30 |
| - /** |
31 |
| - * @param optionName Name of missing option |
32 |
| - */ |
33 |
| - public OptionMissing( String optionName ) |
34 |
| - { |
35 |
| - Validate.notNull( optionName, "Name of missing option can't be NULL" ); |
36 |
| - this.optionName = optionName; |
37 |
| - } |
38 |
| - |
39 |
| - /** |
40 |
| - * Get name of missing option |
41 |
| - * |
42 |
| - * @return optionName Name of option missed |
43 |
| - */ |
44 |
| - public String getOptionName() |
45 |
| - { |
46 |
| - return optionName; |
47 |
| - } |
48 |
| - } |
| 19 | + /** |
| 20 | + * Type of violation where a required option is missing |
| 21 | + */ |
| 22 | + public static final class OptionMissing extends Violation { |
| 23 | + private final String optionName; |
49 | 24 |
|
50 | 25 | /**
|
51 |
| - * Violation where an unexpected option value is found |
| 26 | + * @param optionName Name of missing option |
52 | 27 | */
|
53 |
| - public static final class UnexpectedOption |
54 |
| - extends Violation |
55 |
| - { |
56 |
| - private final String optionName; |
57 |
| - |
58 |
| - /** |
59 |
| - * @param optionName Name of unexpected option |
60 |
| - */ |
61 |
| - public UnexpectedOption( String optionName ) |
62 |
| - { |
63 |
| - Validate.notNull( optionName, "Name of missing option can't be NULL" ); |
64 |
| - this.optionName = optionName; |
65 |
| - } |
66 |
| - |
67 |
| - /** |
68 |
| - * Get name of missing option |
69 |
| - * |
70 |
| - * @return optionName Name of option missed |
71 |
| - */ |
72 |
| - public String getOptionName() |
73 |
| - { |
74 |
| - return optionName; |
75 |
| - } |
| 28 | + public OptionMissing(String optionName) { |
| 29 | + Validate.notNull(optionName, "Name of missing option can't be NULL"); |
| 30 | + this.optionName = optionName; |
76 | 31 | }
|
77 | 32 |
|
78 | 33 | /**
|
79 |
| - * A validation violation |
| 34 | + * Get name of missing option |
| 35 | + * |
| 36 | + * @return optionName Name of option missed |
80 | 37 | */
|
81 |
| - public static abstract class Violation |
82 |
| - { |
83 |
| - Violation() |
84 |
| - { |
85 |
| - } |
| 38 | + public String getOptionName() { |
| 39 | + return optionName; |
86 | 40 | }
|
| 41 | + } |
87 | 42 |
|
88 |
| - private final List<Violation> violations = new ArrayList<Violation>(); |
| 43 | + /** |
| 44 | + * Violation where an unexpected option value is found |
| 45 | + */ |
| 46 | + public static final class UnexpectedOption extends Violation { |
| 47 | + private final String optionName; |
89 | 48 |
|
90 | 49 | /**
|
91 |
| - * Add a new violation to validation result |
92 |
| - * |
93 |
| - * @param <T> Type of validation violation |
94 |
| - * @param violation Violation |
| 50 | + * @param optionName Name of unexpected option |
95 | 51 | */
|
96 |
| - public <T extends Violation> void addViolation( T violation ) |
97 |
| - { |
98 |
| - violations.add( violation ); |
| 52 | + public UnexpectedOption(String optionName) { |
| 53 | + Validate.notNull(optionName, "Name of missing option can't be NULL"); |
| 54 | + this.optionName = optionName; |
99 | 55 | }
|
100 | 56 |
|
101 | 57 | /**
|
102 |
| - * Get list of violations in result |
| 58 | + * Get name of missing option |
103 | 59 | *
|
104 |
| - * @return List of violations in result |
| 60 | + * @return optionName Name of option missed |
105 | 61 | */
|
106 |
| - public List<Violation> getViolations() |
107 |
| - { |
108 |
| - return Collections.unmodifiableList( violations ); |
109 |
| - |
| 62 | + public String getOptionName() { |
| 63 | + return optionName; |
110 | 64 | }
|
| 65 | + } |
111 | 66 |
|
112 |
| - /** |
113 |
| - * @return True if there is not violation |
114 |
| - */ |
115 |
| - public boolean isValid() |
116 |
| - { |
117 |
| - return violations.isEmpty(); |
118 |
| - } |
| 67 | + /** |
| 68 | + * A validation violation |
| 69 | + */ |
| 70 | + public static abstract class Violation { |
| 71 | + Violation() {} |
| 72 | + } |
| 73 | + |
| 74 | + private final List<Violation> violations = new ArrayList<Violation>(); |
| 75 | + |
| 76 | + /** |
| 77 | + * Add a new violation to validation result |
| 78 | + * |
| 79 | + * @param <T> Type of validation violation |
| 80 | + * @param violation Violation |
| 81 | + */ |
| 82 | + public <T extends Violation> void addViolation(T violation) { |
| 83 | + violations.add(violation); |
| 84 | + } |
| 85 | + |
| 86 | + /** |
| 87 | + * Get list of violations in result |
| 88 | + * |
| 89 | + * @return List of violations in result |
| 90 | + */ |
| 91 | + public List<Violation> getViolations() { |
| 92 | + return Collections.unmodifiableList(violations); |
| 93 | + |
| 94 | + } |
| 95 | + |
| 96 | + /** |
| 97 | + * @return True if there is not violation |
| 98 | + */ |
| 99 | + public boolean isValid() { |
| 100 | + return violations.isEmpty(); |
| 101 | + } |
119 | 102 | }
|
0 commit comments