当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java EnumSet allOf()用法及代码示例


EnumSet类allOf()方法

  • allOf() 方法可在java.util包。
  • allOf() 方法用于返回具有给定元素类型 (ele_ty) 的所有元素的 Enumset。
  • allOf() 方法是一个静态方法,因此可以通过类名访问它,如果我们尝试使用类对象访问该方法,则不会出现错误。
  • allOf() 方法可能在返回 EnumSet 对象时抛出异常。
    NullPointerException :当给定参数为空时可能会抛出此异常存在。

用法:

    public static EnumSet allOf(Class ele_ty);

参数:

  • Class ele_ty– 表示此 Enumset 的元素类型 (ele_ty) 类。

返回值:

这个方法的返回类型是EnumSet,它检索具有此 Enum 元素集的 Enumset。

例:

// Java program is to demonstrate the example of
// allOf(Class ele_ty) method of EnumSet

import java.util.*;

public class AllOfEnumSet {
    // Initialize a enum variable
    // with some constants

    public enum Colors {
        RED,
        BLUE,
        GREEN,
        PURPLE,
        YELLOW
    };

    public static void main(String[] args) {
        // Here , we are creating an empty EnumSet
        EnumSet < Colors > es = null;

        // Display EnumSet
        System.out.println("EnumSet:" + es);

        // By using allOf() method is to 
        // get all of the elements of an enum 
        // and put into an es
        es = EnumSet.allOf(Colors.class);

        // Display Modified EnumSet
        System.out.println("Updated set:" + es);
    }
}

输出

EnumSet:null
Updated set:[RED, BLUE, GREEN, PURPLE, YELLOW]


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java EnumSet allOf() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。