diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-05-17 17:29:37 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-05-17 17:29:37 +0000 |
commit | 00185c2857d3fe96b8eab2551652e2317c10b213 (patch) | |
tree | 5f2ab2b07c0c3cfe96940d9838b648a21aa520b4 /src/java/org | |
parent | 6a1e8dbb7051c0ba478d238acdf84ca3d38b5acb (diff) | |
download | poi-00185c2857d3fe96b8eab2551652e2317c10b213.tar.gz poi-00185c2857d3fe96b8eab2551652e2317c10b213.zip |
next version will be 5.0.0
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1877872 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
5 files changed, 8 insertions, 8 deletions
diff --git a/src/java/org/apache/poi/hpsf/ClassID.java b/src/java/org/apache/poi/hpsf/ClassID.java index 6a9db4d105..15eefc476b 100644 --- a/src/java/org/apache/poi/hpsf/ClassID.java +++ b/src/java/org/apache/poi/hpsf/ClassID.java @@ -335,7 +335,7 @@ public class ClassID implements Duplicatable, GenericRecord { * Converts the ClassID to an UUID * @return the ClassID as UUID * - * @since POI 4.1.3 + * @since POI 5.0.0 */ public UUID toUUID() { final long mostSigBits = ByteBuffer.wrap(bytes, 0, 8).getLong(); diff --git a/src/java/org/apache/poi/hssf/record/FormulaRecord.java b/src/java/org/apache/poi/hssf/record/FormulaRecord.java index a6850e5b9b..1593220a24 100644 --- a/src/java/org/apache/poi/hssf/record/FormulaRecord.java +++ b/src/java/org/apache/poi/hssf/record/FormulaRecord.java @@ -121,7 +121,7 @@ public final class FormulaRecord extends CellRecord { } /** - * @deprecated POI 4.1.3, will be removed in 5.0, use getCachedResultTypeEnum until switch to enum is fully done + * @deprecated POI 5.0.0, will be removed in 5.0, use getCachedResultTypeEnum until switch to enum is fully done */ @Deprecated public int getCachedResultType() { @@ -134,7 +134,7 @@ public final class FormulaRecord extends CellRecord { /** * Returns the type of the cached result * @return A CellType - * @since POI 4.1.3 + * @since POI 5.0.0 */ public CellType getCachedResultTypeEnum() { if (specialCachedValue == null) { diff --git a/src/java/org/apache/poi/hssf/record/FormulaSpecialCachedValue.java b/src/java/org/apache/poi/hssf/record/FormulaSpecialCachedValue.java index 22fefd38e3..9eadacea83 100644 --- a/src/java/org/apache/poi/hssf/record/FormulaSpecialCachedValue.java +++ b/src/java/org/apache/poi/hssf/record/FormulaSpecialCachedValue.java @@ -145,7 +145,7 @@ public final class FormulaSpecialCachedValue implements GenericRecord { } /** - * @deprecated POI 4.1.3, will be removed in 5.0, use getValueTypeEnum until switch to enum is fully done + * @deprecated POI 5.0.0, will be removed in 5.0, use getValueTypeEnum until switch to enum is fully done */ @Deprecated public int getValueType() { @@ -165,7 +165,7 @@ public final class FormulaSpecialCachedValue implements GenericRecord { /** * Returns the type of the cached value * @return A CellType - * @since POI 4.1.3 + * @since POI 5.0.0 */ public CellType getValueTypeEnum() { int typeCode = getTypeCode(); diff --git a/src/java/org/apache/poi/hssf/record/OldFormulaRecord.java b/src/java/org/apache/poi/hssf/record/OldFormulaRecord.java index f27bf16d6a..dd18abebf6 100644 --- a/src/java/org/apache/poi/hssf/record/OldFormulaRecord.java +++ b/src/java/org/apache/poi/hssf/record/OldFormulaRecord.java @@ -65,7 +65,7 @@ public final class OldFormulaRecord extends OldCellRecord { } /** - * @deprecated POI 4.1.3, will be removed in 5.0, use getCachedResultTypeEnum until switch to enum is fully done + * @deprecated POI 5.0.0, will be removed in 5.0, use getCachedResultTypeEnum until switch to enum is fully done */ @Deprecated public int getCachedResultType() { @@ -78,7 +78,7 @@ public final class OldFormulaRecord extends OldCellRecord { /** * Returns the type of the cached result * @return A CellType - * @since POI 4.1.3 + * @since POI 5.0.0 */ public CellType getCachedResultTypeEnum() { if (specialCachedValue == null) { diff --git a/src/java/org/apache/poi/ss/usermodel/RangeCopier.java b/src/java/org/apache/poi/ss/usermodel/RangeCopier.java index b9d42f61b9..c6b82a6860 100644 --- a/src/java/org/apache/poi/ss/usermodel/RangeCopier.java +++ b/src/java/org/apache/poi/ss/usermodel/RangeCopier.java @@ -61,7 +61,7 @@ public abstract class RangeCopier { * @param tileDestRange destination range, which should be overridden * @param copyStyles whether to copy the cell styles * @param copyMergedRanges whether to copy merged ranges - * @since 4.1.3 + * @since 5.0.0 */ public void copyRange(CellRangeAddress tilePatternRange, CellRangeAddress tileDestRange, boolean copyStyles, boolean copyMergedRanges) { Sheet sourceCopy = sourceSheet.getWorkbook().cloneSheet(sourceSheet.getWorkbook().getSheetIndex(sourceSheet)); |