回答:
できません。ここには4つのオプションがあると思います。4つすべてがソリューションを提供しますが、アプローチは少し異なります...
オプション1: 列挙型で組み込みを使用しname()
ます。特別なネーミングフォーマットが必要ない場合は、これで問題ありません。
String name = Modes.mode1.name(); // Returns the name of this enum constant, exactly as declared in its enum declaration.
オプション2: 詳細な制御が必要な場合は、オーバーライドにプロパティを列挙に追加します
public enum Modes {
mode1 ("Fancy Mode 1"),
mode2 ("Fancy Mode 2"),
mode3 ("Fancy Mode 3");
private final String name;
private Modes(String s) {
name = s;
}
public boolean equalsName(String otherName) {
// (otherName == null) check is not needed because name.equals(null) returns false
return name.equals(otherName);
}
public String toString() {
return this.name;
}
}
オプション3: 列挙型の代わりに静的ファイナルを使用する:
public final class Modes {
public static final String MODE_1 = "Fancy Mode 1";
public static final String MODE_2 = "Fancy Mode 2";
public static final String MODE_3 = "Fancy Mode 3";
private Modes() { }
}
オプション4: インターフェースには、すべてのフィールドがpublic、static、finalがあります。
public interface Modes {
String MODE_1 = "Fancy Mode 1";
String MODE_2 = "Fancy Mode 2";
String MODE_3 = "Fancy Mode 3";
}
すべての列挙型には、name()メソッドとvalueOf(String)メソッドの両方があります。前者は列挙型の文字列名を返し、後者は名前が文字列である列挙値を返します。これはあなたが探しているものに似ていますか?
String name = Modes.mode1.name();
Modes mode = Modes.valueOf(name);
Enum自体にも静的なvalueOf(Class、String)があるので、
Modes mode = Enum.valueOf(Modes.class, name);
some-really-long-string
。
toString()
各列挙値のメソッドをオーバーライドできます。
例:
public enum Country {
DE {
@Override
public String toString() {
return "Germany";
}
},
IT {
@Override
public String toString() {
return "Italy";
}
},
US {
@Override
public String toString() {
return "United States";
}
}
}
使用法:
public static void main(String[] args) {
System.out.println(Country.DE); // Germany
System.out.println(Country.IT); // Italy
System.out.println(Country.US); // United States
}
Benny Neugebauerが言及しているように、toString()を上書きできます。ただし、代わりに各列挙フィールドのtoStringを上書きするので、次のようなものがさらに好きです。
public enum Country{
SPAIN("España"),
ITALY("Italia"),
PORTUGAL("Portugal");
private String value;
Country(final String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return this.getValue();
}
}
静的メソッドを追加して、すべてのフィールドを取得したり、すべてを印刷したりすることもできます。単にgetValueを呼び出して、各Enumアイテムに関連付けられた文字列を取得します。
mode1.name()
またはString.valueOf(mode1)
。それはそれより良くならない、私は恐れている
使用することはできますMode.mode1.name()
が、頻繁に行う必要はありません。
Mode mode =
System.out.println("The mode is "+mode);
name()
とtoString()
は両方ともオーバーライドできますが、enum
これが発生している場合ののコードを読むことでこれが明確になることを願っています。
name()
ですfinal
。訂正していただきありがとうございます。:)
私の知る限り、名前を取得する唯一の方法は
Mode.mode1.name();
ただし、この方法で本当に必要な場合は、次のようにすることができます。
public enum Modes {
mode1 ("Mode1"),
mode2 ("Mode2"),
mode3 ("Mode3");
private String name;
private Modes(String s) {
name = s;
}
}
Mode.mode1
はまだタイプではありませんString
。
私の列挙型では、それぞれに1つの文字列が割り当てられているとは思いません。これは、列挙型にtoString()メソッドを実装する方法です。
enum Animal
{
DOG, CAT, BIRD;
public String toString(){
switch (this) {
case DOG: return "Dog";
case CAT: return "Cat";
case BIRD: return "Bird";
}
return null;
}
}
return
すべての列挙型と列挙型のスイッチが終端されているので、冗長です。
あなたは単に使うことができます:
""+ Modes.mode1
"" + Modes.mode1
です。正しいバージョンはです。私は答えを修正しました
''.join()
あなたの問題に対する私の解決策!
import java.util.HashMap;
import java.util.Map;
public enum MapEnumSample {
Mustang("One of the fastest cars in the world!"),
Mercedes("One of the most beautiful cars in the world!"),
Ferrari("Ferrari or Mercedes, which one is the best?");
private final String description;
private static Map<String, String> enumMap;
private MapEnumSample(String description) {
this.description = description;
}
public String getEnumValue() {
return description;
}
public static String getEnumKey(String name) {
if (enumMap == null) {
initializeMap();
}
return enumMap.get(name);
}
private static Map<String, String> initializeMap() {
enumMap = new HashMap<String, String>();
for (MapEnumSample access : MapEnumSample.values()) {
enumMap.put(access.getEnumValue(), access.toString());
}
return enumMap;
}
public static void main(String[] args) {
// getting value from Description
System.out.println(MapEnumSample.getEnumKey("One of the fastest cars in the world!"));
// getting value from Constant
System.out.println(MapEnumSample.Mustang.getEnumValue());
System.out.println(MapEnumSample.getEnumKey("One of the most beautiful cars in the world!"));
System.out.println(MapEnumSample.Mercedes.getEnumValue());
// doesnt exist in Enum
System.out.println("Mustang or Mercedes, which one is the best?");
System.out.println(MapEnumSample.getEnumKey("Mustang or Mercedes, which one is the best?") == null ? "I don't know!" : "I believe that "
+ MapEnumSample.getEnumKey("Ferrari or Mustang, which one is the best?") + " is the best!.");
// exists in Enum
System.out.println("Ferrari or Mercedes, wich one is the best?");
System.out.println(MapEnumSample.getEnumKey("Ferrari or Mercedes, which one is the best?") == null ? "I don't know!" : "I believe that "
+ MapEnumSample.getEnumKey("Ferrari or Mercedes, which one is the best?") + " is the best!");
}
}
package com.common.test;
public enum Days {
monday(1,"Monday"),tuesday(2,"Tuesday"),wednesday(3,"Wednesday"),
thrusday(4,"Thrusday"),friday(5,"Friday"),saturday(6,"Saturday"),sunday(7,"Sunday");
private int id;
private String desc;
Days(int id,String desc){
this.id=id;
this.desc=desc;
}
public static String getDay(int id){
for (Days day : Days.values()) {
if (day.getId() == id) {
return day.getDesc();
}
}
return null;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
};
public enum Environment
{
PROD("https://prod.domain.com:1088/"),
SIT("https://sit.domain.com:2019/"),
CIT("https://cit.domain.com:8080/"),
DEV("https://dev.domain.com:21323/");
private String url;
Environment(String envUrl) {
this.url = envUrl;
}
public String getUrl() {
return url;
}
}
String prodUrl = Environment.PROD.getUrl();
印刷されます:
https://prod.domain.com:1088/
この列挙型文字列定数の設計は、ほとんどの場合に機能します。
多くの試みの後、私はこの解決策を思いついた
public static enum Operation {
Addition, Subtraction, Multiplication, Division,;
public String getUserFriendlyString() {
if (this==Addition) {
return " + ";
} else if (this==Subtraction) {
return " - ";
} else if (this==Multiplication) {
return " * ";
} else if (this==Division) {
return " / ";
}
return "undefined";
}
}
私はこれがタイプエラーを防ぐのにもっと簡単だとわかりました:
public enum Modes {
some-really-long-string,
mode1,
mode2,
mode3;
String str;
Modes(){
this.str = super.name();
}
@Override
@NonNull
public String toString() {
return str;
}
ただし、これは、log / printlnでStringを使用する必要があるとき、またはjavaがtoString()メソッドを自動的にコンパイルするときはいつでも機能しますが、次のようなコード行では機能します->
// sample method that require (string,value)
intent.putExtra(Modes.mode1 ,shareElement.getMode()); // java error
// first argument enum does not return value
代わりに、上記のように、列挙型を拡張して、次の.name()
ような場合に使用する必要があります。
intent.putExtra(Modes.mode1.name() ,shareElement.getMode());
.name()
:See を呼び出すことができます:stackoverflow.com/a/6667365/887836