Created
March 19, 2018 00:57
-
-
Save A-pZ/1041b9ecfb9b2296420e9eb38a94a295 to your computer and use it in GitHub Desktop.
これはコーディング規約違反とか言う人多そう…?(lombokのコンストラクタ)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import lombok.AllArgsConstructor; | |
import lombok.Getter; | |
/** | |
* カピバラ区分。 | |
*/ | |
@Getter @AllArgsConstructor | |
public enum CapybaraDivision { | |
BATH("01", "お風呂"), SPA("02", "温泉"); | |
private String code; | |
private String text; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment