import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.RecordFormatException;
-import org.apache.poi.util.Removal;
/**
* Creates new BoolErrRecord. (0x0205)
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public BoolErrRecord clone() {
- return copy();
- }
-
@Override
public BoolErrRecord copy() {
return new BoolErrRecord(this);
import org.apache.poi.util.IOUtils;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.POILogger;
-import org.apache.poi.util.Removal;
/**
* Conditional Formatting v12 Rule Record (0x087A).
return len;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public CFRule12Record clone() {
- return copy();
- }
-
@Override
public CFRule12Record copy() {
return new CFRule12Record(this);
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Defines with width and formatting for a range of columns
return 12;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public ColumnInfoRecord clone() {
- return copy();
- }
-
@Override
public ColumnInfoRecord copy() {
return new ColumnInfoRecord(this);
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.RecordFormatException;
-import org.apache.poi.util.Removal;
/**
* The common object data record is used to store all common preferences for an excel object.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public CommonObjectDataSubRecord clone() {
- return copy();
- }
-
@Override
public CommonObjectDataSubRecord copy() {
return new CommonObjectDataSubRecord(this);
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Helper class used primarily for SST Records<p>
_data = in.readRemainder();
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public ContinueRecord clone() {
- return copy();
- }
-
@Override
public ContinueRecord copy() {
return new ContinueRecord(this);
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* This record is the list header of all data validation records (0x01BE) in the current sheet.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public DVALRecord clone() {
- return copy();
- }
-
@Override
public DVALRecord copy() {
return new DVALRecord(this);
import org.apache.poi.util.BitField;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
import org.apache.poi.util.StringUtil;
/**
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public DVRecord clone() {
- return copy();
- }
-
/** Clones the object. */
@Override
public DVRecord copy() {
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Specifies the default width for columns that have no specific width set.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public DefaultColWidthRecord clone() {
- return copy();
- }
-
@Override
public DefaultColWidthRecord copy() {
return new DefaultColWidthRecord(this);
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/** Controls the accuracy of the calculations */
public final class DeltaRecord extends StandardRecord {
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public DeltaRecord clone() {
- return copy();
- }
-
@Override
public DeltaRecord copy() {
// immutable
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
public final class DrawingRecord extends StandardRecord {
public static final short sid = 0x00EC;
recordData = thedata;
}
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public DrawingRecord clone() {
- return copy();
- }
-
/**
* Cloning of drawing records must be executed through HSSFPatriarch, because all id's must be changed
* @return cloned drawing records
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* MsoDrawingSelection (0x00ED)<p>
}
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public DrawingSelectionRecord clone() {
- return copy();
- }
-
@Override
public DrawingSelectionRecord copy() {
// currently immutable
import org.apache.poi.util.POILogFactory;
import org.apache.poi.util.POILogger;
import org.apache.poi.util.RecordFormatException;
-import org.apache.poi.util.Removal;
import org.apache.poi.util.StringUtil;
/**
return field_6_unknown;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public EmbeddedObjectRefSubRecord clone() {
- return copy();
- }
-
@Override
public EmbeddedObjectRefSubRecord copy() {
return new EmbeddedObjectRefSubRecord(this);
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.RecordFormatException;
-import org.apache.poi.util.Removal;
/**
* ftEnd (0x0000)<p>
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public EndSubRecord clone() {
- return copy();
- }
-
@Override
public EndSubRecord copy() {
return new EndSubRecord();
import org.apache.poi.util.LittleEndianByteArrayOutputStream;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.LittleEndianOutputStream;
-import org.apache.poi.util.Removal;
/**
* File Pass Record (0x002F) <p>
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public FilePassRecord clone() {
- return copy();
- }
-
@Override
public FilePassRecord copy() {
return new FilePassRecord(this);
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.POILogFactory;
import org.apache.poi.util.POILogger;
-import org.apache.poi.util.Removal;
import org.apache.poi.util.StringUtil;
/**
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public FormatRecord clone() {
- return copy();
- }
-
@Override
public FormatRecord copy() {
return new FormatRecord(this);
* @deprecated POI 5.0.0, will be removed in 6.0, use getCachedResultTypeEnum until switch to enum is fully done
*/
@Deprecated
- @Removal(version = "6.0.0XSSFScatterChartData.java")
+ @Removal(version = "6.0.0")
public int getCachedResultType() {
if (specialCachedValue == null) {
return CellType.NUMERIC.getCode();
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.RecordFormatException;
-import org.apache.poi.util.Removal;
/**
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public FtCfSubRecord clone() {
- return copy();
- }
-
@Override
public FtCfSubRecord copy() {
return new FtCfSubRecord(this);
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Tells whether to iterate over formula calculations or not.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public IterationRecord clone() {
- return copy();
- }
-
@Override
public IterationRecord copy() {
return new IterationRecord(this);
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Represents a set of columns in a row with no value but with styling.
return 6 + _xfs.length * 2;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public MulBlankRecord clone() {
- return copy();
- }
-
@Override
public MulBlankRecord copy() {
// immutable - so OK to return this
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
import org.apache.poi.util.StringUtil;
/**
*/
public void setAuthor(String author) {
field_6_author = author;
- field_5_hasMultibyte = StringUtil.hasMultibyte(author);
+ field_5_hasMultibyte = StringUtil.hasMultibyte(author);
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public NoteRecord clone() {
- return copy();
- }
@Override
public NoteRecord copy() {
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Defines whether a sheet or workbook is protected (HSSF DOES NOT SUPPORT ENCRYPTION)<p>
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public ProtectRecord clone() {
- return copy();
- }
-
@Override
public ProtectRecord copy() {
return new ProtectRecord(this);
import org.apache.poi.hssf.util.RKUtil;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* An internal 32 bit number with the two most significant bits storing the type.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public RKRecord clone() {
- return copy();
- }
-
@Override
public RKRecord copy() {
return new RKRecord(this);
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Flag whether to refresh all external data when loading a sheet.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public RefreshAllRecord clone() {
- return copy();
- }
-
@Override
public RefreshAllRecord copy() {
return new RefreshAllRecord(this);
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Defines whether to recalculate before saving (set to true)
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public SaveRecalcRecord clone() {
- return copy();
- }
-
@Override
public SaveRecalcRecord copy() {
return new SaveRecalcRecord(this);
import org.apache.poi.hssf.util.CellRangeAddress8Bit;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Shows the user's selection on the sheet for write set num refs to 0
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public SelectionRecord clone() {
- return copy();
- }
-
@Override
public SelectionRecord copy() {
return new SelectionRecord(this);
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.LittleEndianOutputStream;
-import org.apache.poi.util.Removal;
/**
* Subrecords are part of the OBJ class.
out.write(_data);
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public UnknownSubRecord clone() {
- return copy();
- }
-
@Override
public UnknownSubRecord copy() {
return this;
}
}
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public abstract SubRecord clone();
-
@Override
public abstract SubRecord copy();
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Tells the GUI if this was written by something that can use "natural language" formulas. HSSF can't.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public UseSelFSRecord clone() {
- return copy();
- }
-
@Override
public UseSelFSRecord copy() {
return new UseSelFSRecord(this);
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Flags whether workbook windows are protected
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public WindowProtectRecord clone() {
- return copy();
- }
-
@Override
public WindowProtectRecord copy() {
return new WindowProtectRecord(this);
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Pattern Formatting Block of the Conditional Formatting Rule Record.
return GenericRecordJsonWriter.marshal(this);
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public PatternFormatting clone() {
- return copy();
- }
-
public PatternFormatting copy() {
return new PatternFormatting(this);
}
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* The axis record defines the type of an axis.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public AxisRecord clone() {
- return copy();
- }
-
/**
* Get the axis type field for the Axis record.
*
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* The number of axes used on a chart.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public AxisUsedRecord clone() {
- return copy();
- }
-
/**
* Get the num axis field for the AxisUsed record.
*/
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* The data format record is used to index into a series.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public DataFormatRecord clone() {
- return copy();
- }
-
@Override
public DataFormatRecord copy() {
return new DataFormatRecord(this);
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Describes a line format record. The line format record controls how a line on a chart appears.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public LineFormatRecord clone() {
- return copy();
- }
-
@Override
public LineFormatRecord copy() {
return new LineFormatRecord(this);
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Describes a linked data record. This record refers to the series data or text.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public LinkedDataRecord clone() {
- return copy();
- }
-
@Override
public LinkedDataRecord copy() {
return new LinkedDataRecord(this);
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* The plot growth record specifies the scaling factors used when a font is scaled.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public PlotGrowthRecord clone() {
- return copy();
- }
-
public PlotGrowthRecord copy() {
return new PlotGrowthRecord(this);
}
/**
* @deprecated use {@link #copy()} instead
*/
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* Describes a chart sheet properties record. SHTPROPS (0x1044)<p>
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @Override
- @SuppressWarnings("squid:S2975")
- @Deprecated
- @Removal(version = "5.0.0")
- public SheetPropertiesRecord clone() {
- return copy();
- }
-
@Override
public SheetPropertiesRecord copy() {
return new SheetPropertiesRecord(this);
return sid;
}
- @Override
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* The units record describes units.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public UnitsRecord clone() {
- return copy();
- }
-
@Override
public UnitsRecord copy() {
return new UnitsRecord(this);
import org.apache.poi.util.BitFieldFactory;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
/**
* The value range record defines the range of the value axis.
return sid;
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public ValueRangeRecord clone() {
- return copy();
- }
-
@Override
public ValueRangeRecord copy() {
return new ValueRangeRecord(this);
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
-import org.apache.poi.util.Removal;
-
/**
* Title: CTColor (Extended Color) record part
return GenericRecordJsonWriter.marshal(this);
}
- /**
- * @deprecated use {@link #copy()} instead
- */
- @SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
- @Deprecated
- @Removal(version = "5.0.0")
- public ExtendedColor clone() {
- return copy();
- }
-
@Override
public ExtendedColor copy() {
return new ExtendedColor(this);