本文整理了Java中org.apache.poi.hssf.util.HSSFColor.createColorsByIndexMap()
方法的一些代码示例,展示了HSSFColor.createColorsByIndexMap()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HSSFColor.createColorsByIndexMap()
方法的具体详情如下:
包路径:org.apache.poi.hssf.util.HSSFColor
类名称:HSSFColor
方法名:createColorsByIndexMap
暂无
代码示例来源:origin: org.apache.poi/poi
/**
* This function returns all the Colours, stored in a Map that
* can be edited. No caching is performed. If you don't need to edit
* the table, then call {@link #getIndexHash()} which returns a
* statically cached immutable map of colours.
*/
public static Map<Integer,HSSFColor> getMutableIndexHash() {
return createColorsByIndexMap();
}
代码示例来源:origin: org.apache.poi/poi
/**
* This function returns all the colours in an unmodifiable Map.
* The map is cached on first use.
*
* @return a Map containing all colours keyed by <tt>Integer</tt> excel-style palette indexes
*/
public static synchronized Map<Integer,HSSFColor> getIndexHash() {
if(indexHash == null) {
indexHash = Collections.unmodifiableMap( createColorsByIndexMap() );
}
return indexHash;
}
/**
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
/**
* This function returns all the Colours, stored in a Map that
* can be edited. No caching is performed. If you don't need to edit
* the table, then call {@link #getIndexHash()} which returns a
* statically cached immutable map of colours.
*/
public static Map<Integer,HSSFColor> getMutableIndexHash() {
return createColorsByIndexMap();
}
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
/**
* This function returns all the Colours, stored in a Hashtable that
* can be edited. No caching is performed. If you don't need to edit
* the table, then call {@link #getIndexHash()} which returns a
* statically cached imuatable map of colours.
*/
public final static Hashtable<Integer,HSSFColor> getMutableIndexHash() {
return createColorsByIndexMap();
}
代码示例来源:origin: com.haulmont.thirdparty/poi
/**
* This function returns all the Colours, stored in a Hashtable that
* can be edited. No caching is performed. If you don't need to edit
* the table, then call {@link #getIndexHash()} which returns a
* statically cached imuatable map of colours.
*/
public final static Hashtable<Integer,HSSFColor> getMutableIndexHash() {
return createColorsByIndexMap();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
/**
* This function returns all the colours in an unmodifiable Map.
* The map is cached on first use.
*
* @return a Map containing all colours keyed by <tt>Integer</tt> excel-style palette indexes
*/
public static synchronized Map<Integer,HSSFColor> getIndexHash() {
if(indexHash == null) {
indexHash = Collections.unmodifiableMap( createColorsByIndexMap() );
}
return indexHash;
}
/**
代码示例来源:origin: com.haulmont.thirdparty/poi
/**
* This function returns all the colours in an unmodifiable Map.
* The map is cached on first use.
*
* @return a Map containing all colours keyed by <tt>Integer</tt> excel-style palette indexes
*/
public final static Map<Integer,HSSFColor> getIndexHash() {
if(indexHash == null) {
indexHash = Collections.unmodifiableMap( createColorsByIndexMap() );
}
return indexHash;
}
/**
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
/**
* This function returns all the colours in an unmodifiable Map.
* The map is cached on first use.
*
* @return a Map containing all colours keyed by <tt>Integer</tt> excel-style palette indexes
*/
public final static Map<Integer,HSSFColor> getIndexHash() {
if(indexHash == null) {
indexHash = Collections.unmodifiableMap( createColorsByIndexMap() );
}
return indexHash;
}
/**
内容来源于网络,如有侵权,请联系作者删除!