OSDN Git Service

index on dev20110528_setting_reduce: 9817594 フィールド名修正
[coroid/inqubus.git] / frontend / src / yukihane / inqubus / model / SourceType.java
1 package yukihane.inqubus.model;
2
3 /**
4  *
5  * @author yuki
6  */
7 public enum SourceType {
8
9     DEFAULT("デフォルト"),
10     RECYCLE("無ければダウンロード"),
11     DOWNLOAD("常にダウンロード"),
12     SELECT_FILE("ファイル選択..."),
13     DO_NOTHING("何も行わない");
14     private final String text;
15
16     private SourceType(String text) {
17         this.text = text;
18     }
19
20     @Override
21     public String toString() {
22         return text;
23     }
24 }