File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
api/src/main/java/jakarta/json Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 5858 */
5959public final class Json {
6060
61+ /**
62+ * No instantiation.
63+ */
6164 private Json () {
6265 }
6366
Original file line number Diff line number Diff line change @@ -85,8 +85,13 @@ enum Operation {
8585 */
8686 TEST ("test" );
8787
88+ /** Operation name */
8889 private final String operationName ;
8990
91+ /**
92+ * Create an enum constant with given {@code operationName}.
93+ * @param operationName the operation name for the enum constant
94+ */
9095 private Operation (String operationName ) {
9196 this .operationName = operationName ;
9297 }
Original file line number Diff line number Diff line change 4040
4141public final class JsonCollectors {
4242
43+ /**
44+ * No instantiation.
45+ */
4346 private JsonCollectors () {
4447 }
4548
You can’t perform that action at this time.
0 commit comments