Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions java/enum/enumMember.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// かっこいいEnumの活用

public enum FileType {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

使う側の話だけど、共通化させて、どのクラスからも参照しやすいようにディレクトリ構成にして無駄なコードを作成しないようにエンジニアに教えてあげるようにするといいと思う。

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

どのクラスからも参照しやすいようにディレクトリ構成にして

ここがちょっとよくわからないんだけど、
ディレクトリ構成ってenumの中の構造のこと?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

インナークラスにenumを突っ込んで使うわけではなければって意味

例えば、

class Hoge {
  enum Fuga {
  }
}

みたいに使うなら特に気にすることはないかな
今回はどういう状況で使ってるのかわからないからどっちとも言えないけど

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

なるほど

SystemCd("sys", 10),
DcfDrCd("dcf", 6);
public final String paramName;
public final int cdLength;
private FileType(final String paramName, final int cdLength) {
this.paramName = paramName;
this.cdLength = cdLength;
}
public static Optional<FileType> paramNameOf(final String paramName) {
return Stream.of(values()).filter(f -> f.paramName.equals(paramName)).findAny();
}
}

// enumはこんなに拡張できる(Javaのみらしい)
// 以下サンプル

// fileTypeで与えられた文字列が定義されてるかどうかを一撃で判定できる
final String fileType = "hoge";
if (!FileType.paramNameOf(fileType).isPresent())

// enumの各項目に紐づく値を取れる
FileType filetype = FileType.SystemCd;
fileType.cdLength;