Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

BorderStyle.java 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* ====================================================================
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. ==================================================================== */
  15. package org.apache.poi.ss.usermodel;
  16. /**
  17. * The enumeration value indicating the line style of a border in a cell,
  18. * i.e., whether it is borded dash dot, dash dot dot, dashed, dotted, double, hair, medium,
  19. * medium dash dot, medium dash dot dot, medium dashed, none, slant dash dot, thick or thin.
  20. */
  21. public enum BorderStyle {
  22. /**
  23. * No border
  24. */
  25. NONE,
  26. /**
  27. * Thin border
  28. */
  29. THIN,
  30. /**
  31. * Medium border
  32. */
  33. MEDIUM,
  34. /**
  35. * dash border
  36. */
  37. DASHED,
  38. /**
  39. * dot border
  40. */
  41. HAIR,
  42. /**
  43. * Thick border
  44. */
  45. THICK,
  46. /**
  47. * double-line border
  48. */
  49. DOUBLE,
  50. /**
  51. * hair-line border
  52. */
  53. DOTTED,
  54. /**
  55. * Medium dashed border
  56. */
  57. MEDIUM_DASHED,
  58. /**
  59. * dash-dot border
  60. */
  61. DASH_DOT,
  62. /**
  63. * medium dash-dot border
  64. */
  65. MEDIUM_DASH_DOT,
  66. /**
  67. * dash-dot-dot border
  68. */
  69. DASH_DOT_DOT,
  70. /**
  71. * medium dash-dot-dot border
  72. */
  73. MEDIUM_DASH_DOT_DOTC,
  74. /**
  75. * slanted dash-dot border
  76. */
  77. SLANTED_DASH_DOT;
  78. }