Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is jxl.jar 2.6.12
What is jxl.jar 2.6.12?
✍: fyicenter.com
jxl.jar 2.6.12 is the JAR file for Java Excel API 2.6.12,
which is a Java library for reading, writing and
modifying Microsoft Excel spreadsheet files.
JAR File Size and Download Location:
JAR name: jxl-2.6.12.jar Target JDK version: 1.6 Dependency: None File name: jxl.jar File size: 725735 bytes Release date: 24-Oct-2009 Download: Java Excel API Website.
Here are Java Source Code files for jxl-2.6.12.jar:
⏎ jxl/format/Pattern.java
/********************************************************************* * * Copyright (C) 2002 Andrew Khan * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ***************************************************************************/ package jxl.format; /** * Enumeration class which contains the various patterns available within * the standard Excel pattern palette */ public /*final*/ class Pattern { /** * The internal numerical representation of the colour */ private int value; /** * The textual description */ private String string; /** * The list of patterns */ private static Pattern[] patterns = new Pattern[0]; /** * Private constructor * * @param val * @param s */ protected Pattern(int val, String s) { value = val; string = s; Pattern[] oldcols = patterns; patterns = new Pattern[oldcols.length + 1]; System.arraycopy(oldcols, 0, patterns, 0, oldcols.length); patterns[oldcols.length] = this; } /** * Gets the value of this pattern. This is the value that is written to * the generated Excel file * * @return the binary value */ public int getValue() { return value; } /** * Gets the textual description * * @return the string */ public String getDescription() { return string; } /** * Gets the pattern from the value * * @param val * @return the pattern with that value */ public static Pattern getPattern(int val) { for (int i = 0 ; i < patterns.length ; i++) { if (patterns[i].getValue() == val) { return patterns[i]; } } return NONE; } public final static Pattern NONE = new Pattern(0x0, "None"); public final static Pattern SOLID = new Pattern(0x1, "Solid"); public final static Pattern GRAY_50 = new Pattern(0x2, "Gray 50%"); public final static Pattern GRAY_75 = new Pattern(0x3, "Gray 75%"); public final static Pattern GRAY_25 = new Pattern(0x4, "Gray 25%"); public final static Pattern PATTERN1 = new Pattern(0x5, "Pattern 1"); public final static Pattern PATTERN2 = new Pattern(0x6, "Pattern 2"); public final static Pattern PATTERN3 = new Pattern(0x7, "Pattern 3"); public final static Pattern PATTERN4 = new Pattern(0x8, "Pattern 4"); public final static Pattern PATTERN5 = new Pattern(0x9, "Pattern 5"); public final static Pattern PATTERN6 = new Pattern(0xa, "Pattern 6"); public final static Pattern PATTERN7 = new Pattern(0xb, "Pattern 7"); public final static Pattern PATTERN8 = new Pattern(0xc, "Pattern 8"); public final static Pattern PATTERN9 = new Pattern(0xd, "Pattern 9"); public final static Pattern PATTERN10 = new Pattern(0xe, "Pattern 10"); public final static Pattern PATTERN11 = new Pattern(0xf, "Pattern 11"); public final static Pattern PATTERN12 = new Pattern(0x10, "Pattern 12"); public final static Pattern PATTERN13 = new Pattern(0x11, "Pattern 13"); public final static Pattern PATTERN14 = new Pattern(0x12, "Pattern 14"); }
⏎ jxl/format/Pattern.java
Or download all of them as a single archive file:
File name: jxl-2.6.12-src.zip File size: 824057 bytes Release date: 2009-10-24 Download
⇐ What Is jexcelapi_2_6_12.zip
2017-06-09, 46156👍, 6💬
Popular Posts:
XStream is a simple library to serialize objects to XML and back again. JAR File Size and Download L...
What JAR files are required to run dom\Writer.java provided in the Apache Xerces package? 3 JAR file...
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...
Apache Log4j API provides the interface that applications should code to and provides the adapter co...
XMLSchema, Release 1.4.2, is a lightweight Java object model that can be used to manipulate and gene...