Writing /volume1/Web/Public/dokuwiki/data/log/deprecated/2024-11-15.log failed
差分
このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン前のリビジョン | |||
study:java:enumerated_type [2008/05/08 15:58] – banana | study:java:enumerated_type [2008/05/08 15:59] (現在) – banana | ||
---|---|---|---|
行 132: | 行 132: | ||
} | } | ||
</ | </ | ||
+ | |||
====== An example of class extends an EnumeratedType class ====== | ====== An example of class extends an EnumeratedType class ====== | ||
行 138: | 行 139: | ||
{ | { | ||
public final static ProjectType UNKNOWN = new ProjectType( -1, " | public final static ProjectType UNKNOWN = new ProjectType( -1, " | ||
- | public final static ProjectType EXTERNAL_WEB = new ProjectType(0, | + | public final static ProjectType EXTERNAL_WEB = new ProjectType(0," |
- | | + | public final static ProjectType INTERNAL_WEB = new ProjectType(5," |
- | public final static ProjectType INTERNAL_WEB = new ProjectType(5, | + | public final static ProjectType EXTERNAL_DB = new ProjectType(10," |
- | | + | public final static ProjectType INTERANL_DB = new ProjectType(15," |
- | public final static ProjectType EXTERNAL_DB = new ProjectType(10, | + | public final static ProjectType EXTERNAL_DESKTOP = new ProjectType(20," |
- | | + | public final static ProjectType INTERNAL_DESKTOP = new ProjectType(25," |
- | public final static ProjectType INTERANL_DB = new ProjectType(15, | + | |
- | | + | |
- | public final static ProjectType EXTERNAL_DESKTOP = new ProjectType(20, | + | |
- | | + | |
- | public final static ProjectType INTERNAL_DESKTOP = new ProjectType(25, | + | |
- | | + | |
private static EnumManager enumManager; | private static EnumManager enumManager; |