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.

ListAutoNumber.java 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * ====================================================================
  3. * Licensed to the Apache Software Foundation (ASF) under one or more
  4. * contributor license agreements. See the NOTICE file distributed with
  5. * this work for additional information regarding copyright ownership.
  6. * The ASF licenses this file to You under the Apache License, Version 2.0
  7. * (the "License"); you may not use this file except in compliance with
  8. * the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. * ====================================================================
  18. */
  19. package org.apache.poi.xssf.usermodel;
  20. /**
  21. * Specifies type of automatic numbered bullet points that should be applied to a paragraph.
  22. */
  23. public enum ListAutoNumber {
  24. /**
  25. * (a), (b), (c), ...
  26. */
  27. ALPHA_LC_PARENT_BOTH,
  28. /**
  29. * (A), (B), (C), ...
  30. */
  31. ALPHA_UC_PARENT_BOTH,
  32. /**
  33. * a), b), c), ...
  34. */
  35. ALPHA_LC_PARENT_R,
  36. /**
  37. * A), B), C), ...
  38. */
  39. ALPHA_UC_PARENT_R,
  40. /**
  41. * a., b., c., ...
  42. */
  43. ALPHA_LC_PERIOD,
  44. /**
  45. * A., B., C., ...
  46. */
  47. ALPHA_UC_PERIOD,
  48. /**
  49. * (1), (2), (3), ...
  50. */
  51. ARABIC_PARENT_BOTH,
  52. /**
  53. * 1), 2), 3), ...
  54. */
  55. ARABIC_PARENT_R,
  56. /**
  57. * 1., 2., 3., ...
  58. */
  59. ARABIC_PERIOD,
  60. /**
  61. * 1, 2, 3, ...
  62. */
  63. ARABIC_PLAIN,
  64. /**
  65. * (i), (ii), (iii), ...
  66. */
  67. ROMAN_LC_PARENT_BOTH,
  68. /**
  69. * (I), (II), (III), ...
  70. */
  71. ROMAN_UC_PARENT_BOTH,
  72. /**
  73. * i), ii), iii), ...
  74. */
  75. ROMAN_LC_PARENT_R,
  76. /**
  77. * I), II), III), ...
  78. */
  79. ROMAN_UC_PARENT_R,
  80. /**
  81. * i., ii., iii., ...
  82. */
  83. ROMAN_LC_PERIOD ,
  84. /**
  85. * I., II., III., ...
  86. */
  87. ROMAN_UC_PERIOD,
  88. /**
  89. * Dbl-byte circle numbers
  90. */
  91. CIRCLE_NUM_DB_PLAIN,
  92. /**
  93. * Wingdings black circle numbers
  94. */
  95. CIRCLE_NUM_WD_BLACK_PLAIN,
  96. /**
  97. * Wingdings white circle numbers
  98. */
  99. CIRCLE_NUM_WD_WHITE_PLAIN
  100. }