org.apache.poi.hssf.util.HSSFColor.createColorsByHexStringMap()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(152)

本文整理了Java中org.apache.poi.hssf.util.HSSFColor.createColorsByHexStringMap()方法的一些代码示例,展示了HSSFColor.createColorsByHexStringMap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HSSFColor.createColorsByHexStringMap()方法的具体详情如下:
包路径:org.apache.poi.hssf.util.HSSFColor
类名称:HSSFColor
方法名:createColorsByHexStringMap

HSSFColor.createColorsByHexStringMap介绍

暂无

代码示例

代码示例来源:origin: org.apache.poi/poi

  1. /**
  2. * this function returns all colors in a hastable. It's not implemented as a
  3. * static member/statically initialized because that would be dirty in a
  4. * server environment as it is intended. This means you'll eat the time
  5. * it takes to create it once per request but you will not hold onto it
  6. * if you have none of those requests.
  7. *
  8. * @return a Map containing all colors keyed by String gnumeric-like triplets
  9. */
  10. public static Map<String,HSSFColor> getTripletHash()
  11. {
  12. return createColorsByHexStringMap();
  13. }

代码示例来源:origin: com.haulmont.thirdparty/poi

  1. /**
  2. * this function returns all colors in a hastable. Its not implemented as a
  3. * static member/staticly initialized because that would be dirty in a
  4. * server environment as it is intended. This means you'll eat the time
  5. * it takes to create it once per request but you will not hold onto it
  6. * if you have none of those requests.
  7. *
  8. * @return a hashtable containing all colors keyed by String gnumeric-like triplets
  9. */
  10. public final static Hashtable<String,HSSFColor> getTripletHash()
  11. {
  12. return createColorsByHexStringMap();
  13. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi

  1. /**
  2. * this function returns all colors in a hastable. It's not implemented as a
  3. * static member/statically initialized because that would be dirty in a
  4. * server environment as it is intended. This means you'll eat the time
  5. * it takes to create it once per request but you will not hold onto it
  6. * if you have none of those requests.
  7. *
  8. * @return a Map containing all colors keyed by String gnumeric-like triplets
  9. */
  10. public static Map<String,HSSFColor> getTripletHash()
  11. {
  12. return createColorsByHexStringMap();
  13. }

代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev

  1. /**
  2. * this function returns all colors in a hastable. Its not implemented as a
  3. * static member/staticly initialized because that would be dirty in a
  4. * server environment as it is intended. This means you'll eat the time
  5. * it takes to create it once per request but you will not hold onto it
  6. * if you have none of those requests.
  7. *
  8. * @return a hashtable containing all colors keyed by String gnumeric-like triplets
  9. */
  10. public final static Hashtable<String,HSSFColor> getTripletHash()
  11. {
  12. return createColorsByHexStringMap();
  13. }

相关文章