Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enumの使用例 #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Member

Choose a reason for hiding this comment

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

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

Copy link
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
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
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;