您好,登錄后才能下訂單哦!
這篇文章主要介紹java 枚舉如何使用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
在項(xiàng)目中有很多常量,我們都是使用枚舉(enum)來處理,下面我就和大家分享一個(gè)比較通用的代碼
枚舉
/** * 描述: 常量類型 * / public enum ClientType { SYSTEM(0, "后臺(tái)管理"), EDUCATION(1, "教育系統(tǒng)"), GOVERNMENT(2, "政府系統(tǒng)"); private Integer value; private String text; ClientType(Integer value, String text) { this.value = value; this.text = text; } public Integer getValue() { return this.value; } public String getText() { return this.text; } /** *根據(jù)值找相對(duì)應(yīng)的中文 */ public static String getTextByValue(Integer value) { return Arrays.stream(values()) // java8新特性 -- stream流 .filter(x -> x.getValue().equals(value)) .map(ClientType::getText) .findFirst().orElse(""); } }
枚舉在java代碼使用比較簡(jiǎn)單
在應(yīng)用層的使用方法
// 獲取類型相對(duì)應(yīng)的數(shù)值 Integer type = ClientType .SYSTEM.getValue(); // 獲取中文 Intger code = 1; // 初始化 for (ClientType value : ClientType.values()) { if (type.value== code) { return type; // 不同的業(yè)務(wù)有不同的處理方式 } }
以上是java 枚舉如何使用的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。