Enum VarKind

  • All Implemented Interfaces:
    Serializable, Comparable<VarKind>

    public enum VarKind
    extends Enum<VarKind>
    An enumeration of the various kinds of variables. This same information is present within Daikon (in the VarInfo class), but is intentionally not shared with Daikon in an effort to keep Daikon and Chicory completely independent.

    These names are written into decl files; they should be the same across every Daikon front-end (Java or otherwise), so please do not change them without a very good reason.

    • Method Detail

      • values

        public static VarKind[] 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 (VarKind c : VarKind.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static VarKind 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