Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
Missing class.
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkJeongHwan committed Sep 23, 2019
1 parent 20b9af0 commit 51cc040
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/java/com/realtimetech/kson/test/TestEnum.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.realtimetech.kson.test;

public enum TestEnum {
TYPE_1(1), TYPE_2(2);

private int code;

private TestEnum(int code) {
this.code = code;
}

public int getCode() {
return code;
}
}

0 comments on commit 51cc040

Please sign in to comment.