You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.8 KiB
36 lines
1.8 KiB
/** |
|
* |
|
*/ |
|
package kr.co.kihyun.beans.entity; |
|
|
|
import kr.co.kihyun.moumi.MoumiConfig; |
|
|
|
/** |
|
* @author bhs |
|
* |
|
*/ |
|
public enum TotDocProcess { |
|
FORM(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.formDoc")) //서식 |
|
, REG(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.reg")) //등록 |
|
, PRSS(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.prss")) //집계진행 |
|
, SUBMIT(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.submit")) //제출 |
|
, END(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.end")) //종료 |
|
, CANCEL(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.cancel")) //취소 |
|
, READ(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.read")) //열람 |
|
, DUMMY1(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.invalid")) //정의되지 않은 상태 |
|
, DUMMY2(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.invalid")) //정의되지 않은 상태 |
|
, DUMMY3(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.invalid")) //정의되지 않은 상태 |
|
, DUMMY4(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.invalid")) //정의되지 않은 상태 |
|
, ALL(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.process.all")); //전체 |
|
|
|
private String name; |
|
|
|
private TotDocProcess(String name) { |
|
this.name = name; |
|
} |
|
|
|
@Override |
|
public String toString() { |
|
return name; |
|
} |
|
}
|
|
|