Return-Path: X-Original-To: apmail-poi-commits-archive@minotaur.apache.org Delivered-To: apmail-poi-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ED4491031C for ; Fri, 13 Sep 2013 16:03:59 +0000 (UTC) Received: (qmail 10348 invoked by uid 500); 13 Sep 2013 11:58:21 -0000 Delivered-To: apmail-poi-commits-archive@poi.apache.org Received: (qmail 10224 invoked by uid 500); 13 Sep 2013 11:58:06 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 10170 invoked by uid 99); 13 Sep 2013 11:58:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Sep 2013 11:58:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Sep 2013 11:57:45 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D7EE22388980; Fri, 13 Sep 2013 11:57:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1522883 [2/5] - in /poi/site/publish/apidocs/org/apache/poi/xssf: model/ model/class-use/ usermodel/ usermodel/class-use/ Date: Fri, 13 Sep 2013 11:57:20 -0000 To: commits@poi.apache.org From: nick@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130913115721.D7EE22388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextCap.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextCap.html?rev=1522883&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextCap.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextCap.html Fri Sep 13 11:57:20 2013 @@ -0,0 +1,344 @@ + + + + + +TextCap (POI API Documentation) + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xssf.usermodel +
+Enum TextCap

+
+java.lang.Object
+  extended by java.lang.Enum<TextCap>
+      extended by org.apache.poi.xssf.usermodel.TextCap
+
+
+
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextCap>
+
+
+
+
public enum TextCap
extends java.lang.Enum<TextCap>
+ + +

+Text Capitalization that is to be applied to the text run. This is a render-only + modification and does not affect the actual characters stored in the text run. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + +
+Enum Constant Summary
ALL + +
+           
NONE + +
+           
SMALL + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+static TextCapvalueOf(java.lang.String name) + +
+          Returns the enum constant of this type with the specified name.
+static TextCap[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+NONE

+
+public static final TextCap NONE
+
+
+
+
+
+ +

+SMALL

+
+public static final TextCap SMALL
+
+
+
+
+
+ +

+ALL

+
+public static final TextCap ALL
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static TextCap[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (TextCap c : TextCap.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static TextCap valueOf(java.lang.String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
java.lang.IllegalArgumentException - if this enum type has no constant +with the specified name +
java.lang.NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2013 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextCap.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextCap.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextDirection.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextDirection.html?rev=1522883&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextDirection.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextDirection.html Fri Sep 13 11:57:20 2013 @@ -0,0 +1,375 @@ + + + + + +TextDirection (POI API Documentation) + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xssf.usermodel +
+Enum TextDirection

+
+java.lang.Object
+  extended by java.lang.Enum<TextDirection>
+      extended by org.apache.poi.xssf.usermodel.TextDirection
+
+
+
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextDirection>
+
+
+
+
public enum TextDirection
extends java.lang.Enum<TextDirection>
+ + +

+Vertical Text Types +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + +
+Enum Constant Summary
HORIZONTAL + +
+          Horizontal text.
STACKED + +
+          Determines if all of the text is vertical + ("one letter on top of another").
VERTICAL + +
+          Vertical orientation.
VERTICAL_270 + +
+          Vertical orientation.
+  + + + + + + + + + + + + + + + +
+Method Summary
+static TextDirectionvalueOf(java.lang.String name) + +
+          Returns the enum constant of this type with the specified name.
+static TextDirection[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+HORIZONTAL

+
+public static final TextDirection HORIZONTAL
+
+
Horizontal text. This should be default. +

+

+
+
+
+ +

+VERTICAL

+
+public static final TextDirection VERTICAL
+
+
Vertical orientation. + (each line is 90 degrees rotated clockwise, so it goes + from top to bottom; each next line is to the left from + the previous one). +

+

+
+
+
+ +

+VERTICAL_270

+
+public static final TextDirection VERTICAL_270
+
+
Vertical orientation. + (each line is 270 degrees rotated clockwise, so it goes + from bottom to top; each next line is to the right from + the previous one). +

+

+
+
+
+ +

+STACKED

+
+public static final TextDirection STACKED
+
+
Determines if all of the text is vertical + ("one letter on top of another"). +

+

+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static TextDirection[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (TextDirection c : TextDirection.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static TextDirection valueOf(java.lang.String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
java.lang.IllegalArgumentException - if this enum type has no constant +with the specified name +
java.lang.NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2013 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextDirection.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextDirection.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextFontAlign.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextFontAlign.html?rev=1522883&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextFontAlign.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextFontAlign.html Fri Sep 13 11:57:20 2013 @@ -0,0 +1,385 @@ + + + + + +TextFontAlign (POI API Documentation) + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xssf.usermodel +
+Enum TextFontAlign

+
+java.lang.Object
+  extended by java.lang.Enum<TextFontAlign>
+      extended by org.apache.poi.xssf.usermodel.TextFontAlign
+
+
+
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextFontAlign>
+
+
+
+
public enum TextFontAlign
extends java.lang.Enum<TextFontAlign>
+ + +

+Specified a list of text font alignment types +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + +
+Enum Constant Summary
AUTO + +
+          Automatic alignment
BASELINE + +
+          Align text to the baseline.
BOTTOM + +
+          Align text to the bottom.
CENTER + +
+          Align text in the center.
TOP + +
+          Align text to the top.
+  + + + + + + + + + + + + + + + +
+Method Summary
+static TextFontAlignvalueOf(java.lang.String name) + +
+          Returns the enum constant of this type with the specified name.
+static TextFontAlign[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+AUTO

+
+public static final TextFontAlign AUTO
+
+
Automatic alignment +

+

+
+
+
+ +

+TOP

+
+public static final TextFontAlign TOP
+
+
Align text to the top. +

+

+
+
+
+ +

+CENTER

+
+public static final TextFontAlign CENTER
+
+
Align text in the center. +

+

+
+
+
+ +

+BASELINE

+
+public static final TextFontAlign BASELINE
+
+
Align text to the baseline. +

+

+
+
+
+ +

+BOTTOM

+
+public static final TextFontAlign BOTTOM
+
+
Align text to the bottom. +

+

+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static TextFontAlign[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (TextFontAlign c : TextFontAlign.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static TextFontAlign valueOf(java.lang.String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
java.lang.IllegalArgumentException - if this enum type has no constant +with the specified name +
java.lang.NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2013 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextFontAlign.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextFontAlign.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextHorizontalOverflow.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextHorizontalOverflow.html?rev=1522883&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextHorizontalOverflow.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextHorizontalOverflow.html Fri Sep 13 11:57:20 2013 @@ -0,0 +1,335 @@ + + + + + +TextHorizontalOverflow (POI API Documentation) + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xssf.usermodel +
+Enum TextHorizontalOverflow

+
+java.lang.Object
+  extended by java.lang.Enum<TextHorizontalOverflow>
+      extended by org.apache.poi.xssf.usermodel.TextHorizontalOverflow
+
+
+
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextHorizontalOverflow>
+
+
+
+
public enum TextHorizontalOverflow
extends java.lang.Enum<TextHorizontalOverflow>
+ + +

+Text Horizontal Overflow +

+ +

+


+ +

+ + + + + + + + + + + + + +
+Enum Constant Summary
CLIP + +
+          When a big character does not fit into a line, clip it at + the proper horizontal overflow.
OVERFLOW + +
+          When a big character does not fit into a line, allow a + horizontal overflow.
+  + + + + + + + + + + + + + + + +
+Method Summary
+static TextHorizontalOverflowvalueOf(java.lang.String name) + +
+          Returns the enum constant of this type with the specified name.
+static TextHorizontalOverflow[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+OVERFLOW

+
+public static final TextHorizontalOverflow OVERFLOW
+
+
When a big character does not fit into a line, allow a + horizontal overflow. +

+

+
+
+
+ +

+CLIP

+
+public static final TextHorizontalOverflow CLIP
+
+
When a big character does not fit into a line, clip it at + the proper horizontal overflow. +

+

+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static TextHorizontalOverflow[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (TextHorizontalOverflow c : TextHorizontalOverflow.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static TextHorizontalOverflow valueOf(java.lang.String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
java.lang.IllegalArgumentException - if this enum type has no constant +with the specified name +
java.lang.NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2013 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextHorizontalOverflow.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextHorizontalOverflow.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextVerticalOverflow.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextVerticalOverflow.html?rev=1522883&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextVerticalOverflow.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextVerticalOverflow.html Fri Sep 13 11:57:20 2013 @@ -0,0 +1,351 @@ + + + + + +TextVerticalOverflow (POI API Documentation) + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xssf.usermodel +
+Enum TextVerticalOverflow

+
+java.lang.Object
+  extended by java.lang.Enum<TextVerticalOverflow>
+      extended by org.apache.poi.xssf.usermodel.TextVerticalOverflow
+
+
+
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextVerticalOverflow>
+
+
+
+
public enum TextVerticalOverflow
extends java.lang.Enum<TextVerticalOverflow>
+ + +

+Text Vertical Overflow +

+ +

+


+ +

+ + + + + + + + + + + + + + + + +
+Enum Constant Summary
CLIP + +
+          Pay attention to top and bottom barriers.
ELLIPSIS + +
+          Pay attention to top and bottom barriers.
OVERFLOW + +
+          Overflow the text and pay no attention to top and bottom barriers.
+  + + + + + + + + + + + + + + + +
+Method Summary
+static TextVerticalOverflowvalueOf(java.lang.String name) + +
+          Returns the enum constant of this type with the specified name.
+static TextVerticalOverflow[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+OVERFLOW

+
+public static final TextVerticalOverflow OVERFLOW
+
+
Overflow the text and pay no attention to top and bottom barriers. +

+

+
+
+
+ +

+ELLIPSIS

+
+public static final TextVerticalOverflow ELLIPSIS
+
+
Pay attention to top and bottom barriers. Use an + ellipsis to denote that there is text which is not visible. +

+

+
+
+
+ +

+CLIP

+
+public static final TextVerticalOverflow CLIP
+
+
Pay attention to top and bottom barriers. Provide no + indication that there is text which is not visible. +

+

+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static TextVerticalOverflow[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (TextVerticalOverflow c : TextVerticalOverflow.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static TextVerticalOverflow valueOf(java.lang.String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
java.lang.IllegalArgumentException - if this enum type has no constant +with the specified name +
java.lang.NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2013 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextVerticalOverflow.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: poi/site/publish/apidocs/org/apache/poi/xssf/usermodel/TextVerticalOverflow.html ------------------------------------------------------------------------------ svn:mime-type = text/html --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org