Enum CgmesSubset

    • Enum Constant Detail

      • STATE_VARIABLES

        public static final CgmesSubset STATE_VARIABLES
      • STEADY_STATE_HYPOTHESIS

        public static final CgmesSubset STEADY_STATE_HYPOTHESIS
      • DIAGRAM_LAYOUT

        public static final CgmesSubset DIAGRAM_LAYOUT
      • GEOGRAPHICAL_LOCATION

        public static final CgmesSubset GEOGRAPHICAL_LOCATION
      • EQUIPMENT_BOUNDARY

        public static final CgmesSubset EQUIPMENT_BOUNDARY
      • TOPOLOGY_BOUNDARY

        public static final CgmesSubset TOPOLOGY_BOUNDARY
    • Method Detail

      • values

        public static CgmesSubset[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CgmesSubset c : CgmesSubset.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CgmesSubset valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getIdentifier

        public String getIdentifier()
        Get the identifier of a subset
      • getProfile

        public String getProfile()
      • isValidName

        public boolean isValidName​(String contextName)