Enum Class IconType

java.lang.Object
java.lang.Enum<IconType>
com.grapecity.documents.excel.IconType
所有已实现的接口:
Serializable, Comparable<IconType>, Constable

public enum IconType extends Enum<IconType>
Specifies the icon for a criterion in an icon set conditional formatting rule.
  • 枚举常量详细资料

    • NoCellIcon

      public static final IconType NoCellIcon
      Specifies no cell icon.
    • GreenUpArrow

      public static final IconType GreenUpArrow
      Specifies a green up arrow.
    • YellowSideArrow

      public static final IconType YellowSideArrow
      Specifies a yellow sided arrow.
    • RedDownArrow

      public static final IconType RedDownArrow
      Specifies a red down arrow.
    • GrayUpArrow

      public static final IconType GrayUpArrow
      Specifies a gray up arrow.
    • GraySideArrow

      public static final IconType GraySideArrow
      Specifies a gray sided arrow.
    • GrayDownArrow

      public static final IconType GrayDownArrow
      Specifies a gray down arrow.
    • GreenFlag

      public static final IconType GreenFlag
      Specifies green flag.
    • YellowFlag

      public static final IconType YellowFlag
      Specifies a yellow flag.
    • RedFlag

      public static final IconType RedFlag
      Specifies a red flag.
    • GreenCircle

      public static final IconType GreenCircle
      Specifies a green circle.
    • YellowCircle

      public static final IconType YellowCircle
      Specifies a yellow circle.
    • RedCircleWithBorder

      public static final IconType RedCircleWithBorder
      Specifies a red circle with a border.
    • BlackCircleWithBorder

      public static final IconType BlackCircleWithBorder
      Specifies a black circle with a border.
    • GreenTrafficLight

      public static final IconType GreenTrafficLight
      Specifies a green traffic light.
    • YellowTrafficLight

      public static final IconType YellowTrafficLight
      Specifies a yellow traffic light.
    • RedTrafficLight

      public static final IconType RedTrafficLight
      Specifies a red traffic light.
    • YellowTriangle

      public static final IconType YellowTriangle
      Specifies a yellow triangle.
    • RedDiamond

      public static final IconType RedDiamond
      Specifies a red diamond.
    • GreenCheckSymbol

      public static final IconType GreenCheckSymbol
      Specifies a green check symbol.
    • YellowExclamationSymbol

      public static final IconType YellowExclamationSymbol
      Specifies a yellow exclamation symbol.
    • RedCrossSymbol

      public static final IconType RedCrossSymbol
      Specifies a red cross symbol.
    • GreenCheck

      public static final IconType GreenCheck
      Specifies a green check mark.
    • YellowExclamation

      public static final IconType YellowExclamation
      Specifies a yellow exclamation.
    • RedCross

      public static final IconType RedCross
      Specifies a red cross.
    • YellowUpInclineArrow

      public static final IconType YellowUpInclineArrow
      Specifies a yellow up incline arrow.
    • YellowDownInclineArrow

      public static final IconType YellowDownInclineArrow
      Specifies a yellow down incline arrow.
    • GrayUpInclineArrow

      public static final IconType GrayUpInclineArrow
      Specifies a gray up incline arrow.
    • GrayDownInclineArrow

      public static final IconType GrayDownInclineArrow
      Specifies a gray down incline arrow.
    • RedCircle

      public static final IconType RedCircle
      Specifies a red circle.
    • PinkCircle

      public static final IconType PinkCircle
      Specifies a pink circle.
    • GrayCircle

      public static final IconType GrayCircle
      Specifies a gray circle.
    • BlackCircle

      public static final IconType BlackCircle
      Specifies a black circle.
    • CircleWithOneWhiteQuarter

      public static final IconType CircleWithOneWhiteQuarter
      Specifies a circle with one white quarter.
    • CircleWithTwoWhiteQuarters

      public static final IconType CircleWithTwoWhiteQuarters
      Specifies a circle with two white quarters.
    • CircleWithThreeWhiteQuarters

      public static final IconType CircleWithThreeWhiteQuarters
      Specifies a circle with three white quarters.
    • WhiteCircleAllWhiteQuarters

      public static final IconType WhiteCircleAllWhiteQuarters
      Specifies a white circle with all white quarters.
    • Icon0Bars

      public static final IconType Icon0Bars
      Specifies 0 bars.
    • Icon1Bar

      public static final IconType Icon1Bar
      Specifies 1 bar.
    • Icon2Bars

      public static final IconType Icon2Bars
      Specifies 2 bars.
    • Icon3Bars

      public static final IconType Icon3Bars
      Specifies 3 bars.
    • Icon4Bars

      public static final IconType Icon4Bars
      Specifies 4 bars.
    • GoldStar

      public static final IconType GoldStar
      Specifies a gold star.
    • HalfGoldStar

      public static final IconType HalfGoldStar
      Specifies half a gold star.
    • SilverStar

      public static final IconType SilverStar
      Specifies a silver star.
    • GreenUpTriangle

      public static final IconType GreenUpTriangle
      Specifies a green up triangle.
    • YellowDash

      public static final IconType YellowDash
      Specifies a yellow dash.
    • RedDownTriangle

      public static final IconType RedDownTriangle
      Specifies a red down triangle.
    • Icon4FilledBoxes

      public static final IconType Icon4FilledBoxes
      Specifies 4 filled boxes.
    • Icon3FilledBoxes

      public static final IconType Icon3FilledBoxes
      Specifies 3 filled boxes.
    • Icon2FilledBoxes

      public static final IconType Icon2FilledBoxes
      Specifies 2 filled boxes.
    • Icon1FilledBox

      public static final IconType Icon1FilledBox
      Specifies 1 filled box.
    • Icon0FilledBoxes

      public static final IconType Icon0FilledBoxes
      Specifies 0 filled boxes.
  • 方法详细资料

    • values

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

      public static IconType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getValue

      public int getValue()
    • forValue

      public static IconType forValue(int value)