Enum STCfType

java.lang.Object
java.lang.Enum<STCfType>
org.xlsx4j.sml.STCfType
All Implemented Interfaces:
Serializable, Comparable<STCfType>, java.lang.constant.Constable

public enum STCfType extends Enum<STCfType>

Java class for ST_CfType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="ST_CfType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="expression"/>
     <enumeration value="cellIs"/>
     <enumeration value="colorScale"/>
     <enumeration value="dataBar"/>
     <enumeration value="iconSet"/>
     <enumeration value="top10"/>
     <enumeration value="uniqueValues"/>
     <enumeration value="duplicateValues"/>
     <enumeration value="containsText"/>
     <enumeration value="notContainsText"/>
     <enumeration value="beginsWith"/>
     <enumeration value="endsWith"/>
     <enumeration value="containsBlanks"/>
     <enumeration value="notContainsBlanks"/>
     <enumeration value="containsErrors"/>
     <enumeration value="notContainsErrors"/>
     <enumeration value="timePeriod"/>
     <enumeration value="aboveAverage"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • EXPRESSION

      public static final STCfType EXPRESSION
    • CELL_IS

      public static final STCfType CELL_IS
    • COLOR_SCALE

      public static final STCfType COLOR_SCALE
    • DATA_BAR

      public static final STCfType DATA_BAR
    • ICON_SET

      public static final STCfType ICON_SET
    • TOP_10

      public static final STCfType TOP_10
    • UNIQUE_VALUES

      public static final STCfType UNIQUE_VALUES
    • DUPLICATE_VALUES

      public static final STCfType DUPLICATE_VALUES
    • CONTAINS_TEXT

      public static final STCfType CONTAINS_TEXT
    • NOT_CONTAINS_TEXT

      public static final STCfType NOT_CONTAINS_TEXT
    • BEGINS_WITH

      public static final STCfType BEGINS_WITH
    • ENDS_WITH

      public static final STCfType ENDS_WITH
    • CONTAINS_BLANKS

      public static final STCfType CONTAINS_BLANKS
    • NOT_CONTAINS_BLANKS

      public static final STCfType NOT_CONTAINS_BLANKS
    • CONTAINS_ERRORS

      public static final STCfType CONTAINS_ERRORS
    • NOT_CONTAINS_ERRORS

      public static final STCfType NOT_CONTAINS_ERRORS
    • TIME_PERIOD

      public static final STCfType TIME_PERIOD
    • ABOVE_AVERAGE

      public static final STCfType ABOVE_AVERAGE
  • Method Details

    • values

      public static STCfType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static STCfType 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
    • value

      public String value()
    • fromValue

      public static STCfType fromValue(String v)