net.rgielen.com4j.office2010.excel.XlIcon Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlIcon implements ComEnum {
/**
*
* The value of this constant is -1
*
*/
xlIconNoCellIcon(-1),
/**
*
* The value of this constant is 1
*
*/
xlIconGreenUpArrow(1),
/**
*
* The value of this constant is 2
*
*/
xlIconYellowSideArrow(2),
/**
*
* The value of this constant is 3
*
*/
xlIconRedDownArrow(3),
/**
*
* The value of this constant is 4
*
*/
xlIconGrayUpArrow(4),
/**
*
* The value of this constant is 5
*
*/
xlIconGraySideArrow(5),
/**
*
* The value of this constant is 6
*
*/
xlIconGrayDownArrow(6),
/**
*
* The value of this constant is 7
*
*/
xlIconGreenFlag(7),
/**
*
* The value of this constant is 8
*
*/
xlIconYellowFlag(8),
/**
*
* The value of this constant is 9
*
*/
xlIconRedFlag(9),
/**
*
* The value of this constant is 10
*
*/
xlIconGreenCircle(10),
/**
*
* The value of this constant is 11
*
*/
xlIconYellowCircle(11),
/**
*
* The value of this constant is 12
*
*/
xlIconRedCircleWithBorder(12),
/**
*
* The value of this constant is 13
*
*/
xlIconBlackCircleWithBorder(13),
/**
*
* The value of this constant is 14
*
*/
xlIconGreenTrafficLight(14),
/**
*
* The value of this constant is 15
*
*/
xlIconYellowTrafficLight(15),
/**
*
* The value of this constant is 16
*
*/
xlIconRedTrafficLight(16),
/**
*
* The value of this constant is 17
*
*/
xlIconYellowTriangle(17),
/**
*
* The value of this constant is 18
*
*/
xlIconRedDiamond(18),
/**
*
* The value of this constant is 19
*
*/
xlIconGreenCheckSymbol(19),
/**
*
* The value of this constant is 20
*
*/
xlIconYellowExclamationSymbol(20),
/**
*
* The value of this constant is 21
*
*/
xlIconRedCrossSymbol(21),
/**
*
* The value of this constant is 22
*
*/
xlIconGreenCheck(22),
/**
*
* The value of this constant is 23
*
*/
xlIconYellowExclamation(23),
/**
*
* The value of this constant is 24
*
*/
xlIconRedCross(24),
/**
*
* The value of this constant is 25
*
*/
xlIconYellowUpInclineArrow(25),
/**
*
* The value of this constant is 26
*
*/
xlIconYellowDownInclineArrow(26),
/**
*
* The value of this constant is 27
*
*/
xlIconGrayUpInclineArrow(27),
/**
*
* The value of this constant is 28
*
*/
xlIconGrayDownInclineArrow(28),
/**
*
* The value of this constant is 29
*
*/
xlIconRedCircle(29),
/**
*
* The value of this constant is 30
*
*/
xlIconPinkCircle(30),
/**
*
* The value of this constant is 31
*
*/
xlIconGrayCircle(31),
/**
*
* The value of this constant is 32
*
*/
xlIconBlackCircle(32),
/**
*
* The value of this constant is 33
*
*/
xlIconCircleWithOneWhiteQuarter(33),
/**
*
* The value of this constant is 34
*
*/
xlIconCircleWithTwoWhiteQuarters(34),
/**
*
* The value of this constant is 35
*
*/
xlIconCircleWithThreeWhiteQuarters(35),
/**
*
* The value of this constant is 36
*
*/
xlIconWhiteCircleAllWhiteQuarters(36),
/**
*
* The value of this constant is 37
*
*/
xlIcon0Bars(37),
/**
*
* The value of this constant is 38
*
*/
xlIcon1Bar(38),
/**
*
* The value of this constant is 39
*
*/
xlIcon2Bars(39),
/**
*
* The value of this constant is 40
*
*/
xlIcon3Bars(40),
/**
*
* The value of this constant is 41
*
*/
xlIcon4Bars(41),
/**
*
* The value of this constant is 42
*
*/
xlIconGoldStar(42),
/**
*
* The value of this constant is 43
*
*/
xlIconHalfGoldStar(43),
/**
*
* The value of this constant is 44
*
*/
xlIconSilverStar(44),
/**
*
* The value of this constant is 45
*
*/
xlIconGreenUpTriangle(45),
/**
*
* The value of this constant is 46
*
*/
xlIconYellowDash(46),
/**
*
* The value of this constant is 47
*
*/
xlIconRedDownTriangle(47),
/**
*
* The value of this constant is 48
*
*/
xlIcon4FilledBoxes(48),
/**
*
* The value of this constant is 49
*
*/
xlIcon3FilledBoxes(49),
/**
*
* The value of this constant is 50
*
*/
xlIcon2FilledBoxes(50),
/**
*
* The value of this constant is 51
*
*/
xlIcon1FilledBox(51),
/**
*
* The value of this constant is 52
*
*/
xlIcon0FilledBoxes(52),
;
private final int value;
XlIcon(int value) { this.value=value; }
public int comEnumValue() { return value; }
}