Skip to content

Instantly share code, notes, and snippets.

@A-pZ
Created March 19, 2018 00:57
Show Gist options
  • Save A-pZ/1041b9ecfb9b2296420e9eb38a94a295 to your computer and use it in GitHub Desktop.
Save A-pZ/1041b9ecfb9b2296420e9eb38a94a295 to your computer and use it in GitHub Desktop.
これはコーディング規約違反とか言う人多そう…?(lombokのコンストラクタ)
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