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.

TableStyle.java 645B

1234567891011121314151617181920212223
  1. package org.apache.poi.ss.usermodel;
  2. /**
  3. * Data table style definition. Includes style elements for various table components.
  4. * Any number of style elements may be represented, and any cell may be styled by
  5. * multiple elements. The order of elements in {@link TableStyleType} defines precedence.
  6. *
  7. * @since 3.17 beta 1
  8. */
  9. public interface TableStyle {
  10. /**
  11. * @return name (may be a builtin name)
  12. */
  13. String getName();
  14. /**
  15. *
  16. * @param type
  17. * @return style definition for the given type, or null if not defined in this style.
  18. */
  19. DifferentialStyleProvider getStyle(TableStyleType type);
  20. }