mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
10 lines
121 B
Java
10 lines
121 B
Java
package org.json.junit;
|
|
|
|
/**
|
|
* An enum with no methods or data
|
|
*/
|
|
public enum MyEnum {
|
|
VAL1,
|
|
VAL2,
|
|
VAL3;
|
|
}
|