-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConst.java
More file actions
28 lines (26 loc) · 956 Bytes
/
Copy pathConst.java
File metadata and controls
28 lines (26 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* Filename : Const.java
* Class : com.rocomo.util.Const
* History : 2012/07/18, litlhope, develop
*
* Comment : 프로젝트 공통으로 사용할 상수를 등록하는 곳입니다.
*/
package com.rocomo.util;
/**
* 공통상수 정의
*
* @since JDK 1.6.0
* @version 1.0
* @author Copyright (c) 2012 by ROCOMO.INC. All Rights Reserved.
*/
public class Const {
/* ##############################################################
* # FORMAT
* ############################################################## */
public static final String DEFAULT_FORMAT_DATE = "yyyy/MM/dd"; /** 기본 날자 포멧 */
public static final String DEFAULT_FORMAT_MONEY = "#,###"; /** 기본 화폐 포멧 */
/* ##############################################################
* # VALUES
* ############################################################## */
public static final String DEFAULT_BLANK_STRING = ""; /** 문자열 체크 결과 블랭크이거나 오류일 경우 기본 문자열 값 */
}