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.

TableStyleInfo.java 937B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package org.apache.poi.ss.usermodel;
  2. /**
  3. * style information for a specific table instance, referencing the document style
  4. * and indicating which optional portions of the style to apply.
  5. *
  6. * @since 3.17 beta 1
  7. */
  8. public interface TableStyleInfo {
  9. /**
  10. * @return true if alternating column styles should be applied
  11. */
  12. boolean isShowColumnStripes();
  13. /**
  14. * @return true if alternating row styles should be applied
  15. */
  16. boolean isShowRowStripes();
  17. /**
  18. * @return true if the distinct first column style should be applied
  19. */
  20. boolean isShowFirstColumn();
  21. /**
  22. * @return true if the distinct last column style should be applied
  23. */
  24. boolean isShowLastColumn();
  25. /**
  26. * @return the name of the style (may reference a built-in style)
  27. */
  28. String getName();
  29. /**
  30. * @return style definition
  31. */
  32. TableStyle getStyle();
  33. }