java enummap_Java EnumMap values()方法与示例
java enummap
EnumMap類values()方法 (EnumMap Class values() method)
values() method is available in java.util package.
values()方法在java.util包中可用。
values() method is used to get all the values in a Collection view of this enum map.
values()方法用于獲取此枚舉映射的Collection視圖中的所有值。
values() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
values()方法是一種非靜態方法,只能通過類對象訪問,如果嘗試使用類名稱訪問該方法,則會收到錯誤消息。
values() method does not throw an exception at the time of collecting values in a Collection.
在集合中收集值時, values()方法不會引發異常。
Syntax:
句法:
public Collection values();Parameter(s):
參數:
It does not accept any parameter.
它不接受任何參數。
Return value:
返回值:
The return type of this method is Collection, it gets the Collection view of the values exists in this enum map.
此方法的返回類型為Collection ,它獲取此枚舉映射中存在的值的Collection視圖。
Example:
例:
// Java program to demonstrate the example // of Collection values() method of EnumMapimport java.util.*;public class ValuesOfEnumMap {public enum Colors {RED,BLUE,PINK,YELLOW};public static void main(String[] args) {// We are creating an EnumMap objectEnumMap < Colors, String > em =new EnumMap < Colors, String > (Colors.class);// By using put() method is to// add the linked values in an// EnumMapem.put(Colors.RED, "1");em.put(Colors.BLUE, "2");em.put(Colors.PINK, "3");em.put(Colors.YELLOW, "4");// Display EnumMapSystem.out.println("EnumMap: " + em);// By using values() method isto// represent the values element exists in an // EnumMap to be viewed in a Collection objectCollection val_ele = em.values();// Display values collection view of EnumMapSystem.out.println("em.values(): " + val_ele);} }Output
輸出量
EnumMap: {RED=1, BLUE=2, PINK=3, YELLOW=4} em.values(): [1, 2, 3, 4]翻譯自: https://www.includehelp.com/java/enummap-values-method-with-example.aspx
java enummap
總結
以上是生活随笔為你收集整理的java enummap_Java EnumMap values()方法与示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: dbms_DBMS | 并发控制
- 下一篇: css复选框样式_使用CSS样式复选框