mirror of
https://github.com/stleary/JSON-java.git
synced 2025-08-03 03:15:32 -04:00
11 lines
121 B
Java
11 lines
121 B
Java
package org.json.junit;
|
|
|
|
/**
|
|
* An enum with no methods or data
|
|
*/
|
|
public enum MyEnum {
|
|
VAL1,
|
|
VAL2,
|
|
VAL3;
|
|
}
|