Enum CommonViewConstants.ViewVersionSummaryConstants

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CommonViewConstants.ViewVersionSummaryConstants>
    Enclosing class:
    CommonViewConstants

    protected static enum CommonViewConstants.ViewVersionSummaryConstants
    extends java.lang.Enum<CommonViewConstants.ViewVersionSummaryConstants>
    All the properties except 'common_view' are stored in the View's Version Summary. 'operation' is supplied by the library and hence does not need to appear in the enum below. If you add a new constant that is specific to a version of the view, make sure to add it to the enum below.
    • Method Detail

      • values

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

        public static CommonViewConstants.ViewVersionSummaryConstants valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null