mirror of https://github.com/apache/poi.git
POI 5.1.0
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892897 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fc932c8ae4
commit
1bdf4bd18f
|
@ -1636,7 +1636,7 @@ public abstract class OPCPackage implements RelationshipSource, Closeable {
|
|||
|
||||
/**
|
||||
* @return true if the package is in Strict OOXML format
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
public boolean isStrictOoxmlFormat() {
|
||||
PackageRelationshipCollection coreDocRelationships = getRelationshipsByType(
|
||||
|
|
|
@ -1070,7 +1070,7 @@ public abstract class XDDFChart extends POIXMLDocumentPart implements TextContai
|
|||
* @param newSheet
|
||||
* sheet to be used in the data references.
|
||||
*
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
public void replaceReferences(XSSFSheet newSheet) {
|
||||
for (XDDFChartData data : getChartSeries()) {
|
||||
|
|
|
@ -258,7 +258,7 @@ public abstract class XDDFChartData {
|
|||
*
|
||||
* @param index
|
||||
* data point index.
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
public void clearDataPoint(long index) {
|
||||
List<CTDPt> points = getDPtList();
|
||||
|
@ -278,7 +278,7 @@ public abstract class XDDFChartData {
|
|||
* data point index.
|
||||
* @return
|
||||
* the data point with the given {@code index}.
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
public XDDFDataPoint getDataPoint(long index) {
|
||||
List<CTDPt> points = getDPtList();
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.openxmlformats.schemas.drawingml.x2006.chart.CTDPt;
|
|||
import org.openxmlformats.schemas.drawingml.x2006.chart.CTMarker;
|
||||
|
||||
/**
|
||||
* @since 5.0.1
|
||||
* @since 5.1.0
|
||||
*/
|
||||
@Beta
|
||||
public class XDDFDataPoint {
|
||||
|
|
|
@ -3373,7 +3373,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
|
|||
* {@link XSSFCell#removeHyperlink()} can be used if the hyperlink is just for that one cell.
|
||||
*
|
||||
* @param hyperlink the link to remove
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
public void removeHyperlink(XSSFHyperlink hyperlink) {
|
||||
hyperlinks.remove(hyperlink);
|
||||
|
|
|
@ -688,7 +688,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook, Date1904Su
|
|||
}
|
||||
|
||||
/**
|
||||
* Modified in POI 5.0.1 to only log issues with unknown relationship types
|
||||
* Modified in POI 5.1.0 to only log issues with unknown relationship types
|
||||
* - see https://bz.apache.org/bugzilla/show_bug.cgi?id=64759
|
||||
*
|
||||
* @since 3.14-Beta1
|
||||
|
|
|
@ -42,7 +42,7 @@ import java.util.List;
|
|||
*
|
||||
* @see PercentRank
|
||||
* @see PercentRankIncFunction
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
final class PercentRankExcFunction implements FreeRefFunction {
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.apache.poi.ss.formula.functions.PercentRank;
|
|||
*
|
||||
* @see PercentRank
|
||||
* @see PercentRankExcFunction
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
final class PercentRankIncFunction implements FreeRefFunction {
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ import java.util.List;
|
|||
* <b>text2 ...</b> Optional. Additional text items to be joined. There can be a maximum of 252 text arguments for the text items, including text1.
|
||||
* Each can be a text string, or array of strings, such as a range of cells.<br>
|
||||
*
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
final class TextJoinFunction implements FreeRefFunction {
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.apache.poi.util.Removal;
|
|||
/**
|
||||
* Convenience base class for functions that only take zero arguments.
|
||||
*
|
||||
* @deprecated replaced by lambda expressions in 5.0.1
|
||||
* @deprecated replaced by lambda expressions in 5.1.0
|
||||
*/
|
||||
@Deprecated
|
||||
@Removal(version = "6.0.0")
|
||||
|
|
|
@ -40,7 +40,7 @@ import java.util.List;
|
|||
* <br>
|
||||
* Returns a number between 0 and 1 representing a percentage.
|
||||
*
|
||||
* @since POI 5.0.1
|
||||
* @since POI 5.1.0
|
||||
*/
|
||||
public final class PercentRank implements Function {
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ public abstract class TextFunction implements Function {
|
|||
/**
|
||||
* An implementation of the TRIM function:
|
||||
* Removes leading and trailing spaces from value if evaluated operand
|
||||
* value is string. Since POI 5.0.1, this also trims double spaces so that only 1
|
||||
* value is string. Since POI 5.1.0, this also trims double spaces so that only 1
|
||||
* is kept (https://bz.apache.org/bugzilla/show_bug.cgi?id=65230).
|
||||
* Author: Manda Wilson < wilson at c bio dot msk cc dot org >
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue