You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TableStyleType.java 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package org.apache.poi.ss.usermodel;
  2. /**
  3. * Ordered list of table style elements, for both data tables and pivot tables.
  4. * Some elements only apply to pivot tables, but any style definition can omit any number,
  5. * so having them in one list should not be a problem.
  6. * <p/>
  7. * The order is the specification order of application, with later elements overriding previous
  8. * ones, if style properties conflict.
  9. * <p/>
  10. * Processing could iterate bottom-up if looking for specific properties, and stop when the
  11. * first style is found defining a value for that property.
  12. * <p/>
  13. * Enum names match the OOXML spec values exactly, so {@link #valueOf(String)} will work.
  14. *
  15. * @since 3.17 beta 1
  16. */
  17. public enum TableStyleType {
  18. wholeTable,
  19. headerRow,
  20. totalRow,
  21. firstColumn,
  22. lastColumn,
  23. firstRowStripe,
  24. secondRowStripe,
  25. firstColumnStripe,
  26. secondColumnStripe,
  27. firstHeaderCell,
  28. lastHeaderCell,
  29. firstTotalCell,
  30. lastTotalCell,
  31. firstSubtotalColumn,
  32. secondSubtotalColumn,
  33. thirdSubtotalColumn,
  34. firstSubtotalRow,
  35. secondSubtotalRow,
  36. thirdSubtotalRow,
  37. blankRow,
  38. firstColumnSubheading,
  39. secondColumnSubheading,
  40. thirdColumnSubheading,
  41. firstRowSubheading,
  42. secondRowSubheading,
  43. thirdRowSubheading,
  44. pageFieldLabels,
  45. pageFieldValues,
  46. ;
  47. }