mirror of https://github.com/apache/poi.git
bug 59790,59791: add @since javadoc annotation to FormulaType and CellType
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751287 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4f92e81892
commit
a22b230394
|
@ -57,14 +57,19 @@ public enum FormulaType {
|
||||||
|
|
||||||
/** @deprecated POI 3.15 beta 3. */
|
/** @deprecated POI 3.15 beta 3. */
|
||||||
private final int code;
|
private final int code;
|
||||||
/** @deprecated POI 3.15 beta 3.
|
/**
|
||||||
|
* @since POI 3.15 beta 3.
|
||||||
|
* @deprecated POI 3.15 beta 3.
|
||||||
* Formula type code doesn't mean anything. Only in this class for transitioning from a class with int constants to a true enum.
|
* Formula type code doesn't mean anything. Only in this class for transitioning from a class with int constants to a true enum.
|
||||||
* Remove hard-coded numbers from the enums above. */
|
* Remove hard-coded numbers from the enums above. */
|
||||||
private FormulaType(int code) {
|
private FormulaType(int code) {
|
||||||
this.code = code;
|
this.code = code;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @deprecated POI 3.15 beta 3. Used to transition code from <code>int</code>s to <code>FormulaType</code>s. */
|
/**
|
||||||
|
* @since POI 3.15 beta 3.
|
||||||
|
* @deprecated POI 3.15 beta 3. Used to transition code from <code>int</code>s to <code>FormulaType</code>s.
|
||||||
|
*/
|
||||||
public static FormulaType forInt(int code) {
|
public static FormulaType forInt(int code) {
|
||||||
for (FormulaType type : values()) {
|
for (FormulaType type : values()) {
|
||||||
if (type.code == code) {
|
if (type.code == code) {
|
||||||
|
|
|
@ -20,6 +20,9 @@ package org.apache.poi.ss.usermodel;
|
||||||
import org.apache.poi.ss.formula.FormulaType;
|
import org.apache.poi.ss.formula.FormulaType;
|
||||||
import org.apache.poi.util.Internal;
|
import org.apache.poi.util.Internal;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since POI 3.15 beta 3
|
||||||
|
*/
|
||||||
public enum CellType {
|
public enum CellType {
|
||||||
@Internal
|
@Internal
|
||||||
_UNINITIALIZED(-1),
|
_UNINITIALIZED(-1),
|
||||||
|
@ -52,15 +55,24 @@ public enum CellType {
|
||||||
*/
|
*/
|
||||||
ERROR(5);
|
ERROR(5);
|
||||||
|
|
||||||
/** @deprecated POI 3.15 beta 3 */
|
/**
|
||||||
|
* @since POI 3.15 beta 3
|
||||||
|
* @deprecated POI 3.15 beta 3
|
||||||
|
*/
|
||||||
private final int code;
|
private final int code;
|
||||||
|
|
||||||
/** @deprecated POI 3.15 beta 3 */
|
/**
|
||||||
|
* @since POI 3.15 beta 3
|
||||||
|
* @deprecated POI 3.15 beta 3
|
||||||
|
*/
|
||||||
private CellType(int code) {
|
private CellType(int code) {
|
||||||
this.code = code;
|
this.code = code;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @deprecated POI 3.15 beta 3. Used to transition code from <code>int</code>s to <code>CellType</code>s. */
|
/**
|
||||||
|
* @since POI 3.15 beta 3.
|
||||||
|
* @deprecated POI 3.15 beta 3. Used to transition code from <code>int</code>s to <code>CellType</code>s.
|
||||||
|
*/
|
||||||
public static CellType forInt(int code) {
|
public static CellType forInt(int code) {
|
||||||
for (CellType type : values()) {
|
for (CellType type : values()) {
|
||||||
if (type.code == code) {
|
if (type.code == code) {
|
||||||
|
@ -70,7 +82,10 @@ public enum CellType {
|
||||||
throw new IllegalArgumentException("Invalid CellType code: " + code);
|
throw new IllegalArgumentException("Invalid CellType code: " + code);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @deprecated POI 3.15 beta 3 */
|
/**
|
||||||
|
* @since POI 3.15 beta 3
|
||||||
|
* @deprecated POI 3.15 beta 3
|
||||||
|
*/
|
||||||
public int getCode() {
|
public int getCode() {
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue