Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 96FD2200D4B for ; Mon, 27 Nov 2017 13:09:43 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 9543C160C19; Mon, 27 Nov 2017 12:09:43 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 41C73160C1D for ; Mon, 27 Nov 2017 13:09:41 +0100 (CET) Received: (qmail 31138 invoked by uid 500); 27 Nov 2017 12:09:40 -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 30903 invoked by uid 99); 27 Nov 2017 12:09:39 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Nov 2017 12:09:39 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 7CCE73A0317 for ; Mon, 27 Nov 2017 12:09:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1816438 [15/35] - in /poi/site/publish: ./ apidocs/ apidocs/org/apache/poi/ apidocs/org/apache/poi/class-use/ apidocs/org/apache/poi/hpsf/ apidocs/org/apache/poi/hpsf/class-use/ apidocs/org/apache/poi/hpsf/wellknown/ apidocs/org/apache/poi... Date: Mon, 27 Nov 2017 12:09:33 -0000 To: commits@poi.apache.org From: nick@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20171127120936.7CCE73A0317@svn01-us-west.apache.org> archived-at: Mon, 27 Nov 2017 12:09:43 -0000 Added: poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutMode.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutMode.html?rev=1816438&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutMode.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutMode.html Mon Nov 27 12:09:29 2017 @@ -0,0 +1,344 @@ + + + + + +LayoutMode (POI API Documentation) + + + + + + + + + + + +
+
org.apache.poi.xddf.usermodel.chart
+

Enum LayoutMode

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.lang.Enum<LayoutMode>
    • +
    • +
        +
      • org.apache.poi.xddf.usermodel.chart.LayoutMode
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<LayoutMode>
    +
    +
    +
    +
    public enum LayoutMode
    +extends java.lang.Enum<LayoutMode>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      EDGE 
      FACTOR 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static LayoutModevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static LayoutMode[]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
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static LayoutMode[] 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 (LayoutMode c : LayoutMode.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static LayoutMode 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 2017 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutTarget.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutTarget.html?rev=1816438&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutTarget.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LayoutTarget.html Mon Nov 27 12:09:29 2017 @@ -0,0 +1,344 @@ + + + + + +LayoutTarget (POI API Documentation) + + + + + + + + + + + +
+
org.apache.poi.xddf.usermodel.chart
+

Enum LayoutTarget

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.lang.Enum<LayoutTarget>
    • +
    • +
        +
      • org.apache.poi.xddf.usermodel.chart.LayoutTarget
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<LayoutTarget>
    +
    +
    +
    +
    public enum LayoutTarget
    +extends java.lang.Enum<LayoutTarget>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      INNER 
      OUTER 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static LayoutTargetvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static LayoutTarget[]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
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static LayoutTarget[] 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 (LayoutTarget c : LayoutTarget.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static LayoutTarget 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 2017 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LegendPosition.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LegendPosition.html?rev=1816438&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LegendPosition.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/LegendPosition.html Mon Nov 27 12:09:29 2017 @@ -0,0 +1,380 @@ + + + + + +LegendPosition (POI API Documentation) + + + + + + + + + + + +
+
org.apache.poi.xddf.usermodel.chart
+

Enum LegendPosition

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.lang.Enum<LegendPosition>
    • +
    • +
        +
      • org.apache.poi.xddf.usermodel.chart.LegendPosition
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<LegendPosition>
    +
    +
    +
    +
    public enum LegendPosition
    +extends java.lang.Enum<LegendPosition>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      BOTTOM 
      LEFT 
      RIGHT 
      TOP 
      TOP_RIGHT 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static LegendPositionvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static LegendPosition[]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
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static LegendPosition[] 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 (LegendPosition c : LegendPosition.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static LegendPosition 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 2017 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/MarkerStyle.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/MarkerStyle.html?rev=1816438&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/MarkerStyle.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/MarkerStyle.html Mon Nov 27 12:09:29 2017 @@ -0,0 +1,452 @@ + + + + + +MarkerStyle (POI API Documentation) + + + + + + + + + + + +
+
org.apache.poi.xddf.usermodel.chart
+

Enum MarkerStyle

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.lang.Enum<MarkerStyle>
    • +
    • +
        +
      • org.apache.poi.xddf.usermodel.chart.MarkerStyle
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<MarkerStyle>
    +
    +
    +
    +
    public enum MarkerStyle
    +extends java.lang.Enum<MarkerStyle>
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static MarkerStylevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static MarkerStyle[]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
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static MarkerStyle[] 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 (MarkerStyle c : MarkerStyle.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static MarkerStyle 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 2017 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/RadarStyle.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/RadarStyle.html?rev=1816438&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/RadarStyle.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xddf/usermodel/chart/RadarStyle.html Mon Nov 27 12:09:29 2017 @@ -0,0 +1,356 @@ + + + + + +RadarStyle (POI API Documentation) + + + + + + + + + + + +
+
org.apache.poi.xddf.usermodel.chart
+

Enum RadarStyle

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.lang.Enum<RadarStyle>
    • +
    • +
        +
      • org.apache.poi.xddf.usermodel.chart.RadarStyle
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<RadarStyle>
    +
    +
    +
    +
    public enum RadarStyle
    +extends java.lang.Enum<RadarStyle>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      FILLED 
      MARKER 
      STANDARD 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static RadarStylevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static RadarStyle[]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
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static RadarStyle[] 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 (RadarStyle c : RadarStyle.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static RadarStyle 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 2017 The Apache Software Foundation or + its licensors, as applicable. +

+ + --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org