Changeset 36092 in osm for applications/editors/josm/plugins/opendata/includes
- Timestamp:
- 2023-05-30T22:06:15+02:00 (22 months ago)
- Location:
- applications/editors/josm/plugins/opendata/includes/org/apache/poi
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/record/common/FeatFormulaErr2.java
r28000 r36092 25 25 * Title: FeatFormulaErr2 (Formula Evaluation Shared Feature) common record part 26 26 * <P> 27 * This record part specifies Formula Evaluation & Error Ignoring data 27 * This record part specifies Formula Evaluation & Error Ignoring data 28 28 * for a sheet, stored as part of a Shared Feature. It can be found in 29 29 * records such as {@link FeatRecord}. -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/record/formula/LessThanPtg.java
r28000 r36092 19 19 20 20 /** 21 * Less than operator PTG " <". The SID is taken from the21 * Less than operator PTG "<". The SID is taken from the 22 22 * Openoffice.orgs Documentation of the Excel File Format, 23 23 * Table 3.5.7 -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFDataFormat.java
r30737 r36092 40 40 * with a prefix "[$-xxx]" (where xxx is a 1-7 digit hexadecimal number). 41 41 * See the Microsoft article 42 * <a href="http://office.microsoft.com/assistance/hfws.aspx?AssetID=HA010346351033& CTT=6&Origin=EC010272491033">42 * <a href="http://office.microsoft.com/assistance/hfws.aspx?AssetID=HA010346351033&CTT=6&Origin=EC010272491033"> 43 43 * Creating international number formats 44 44 * </a> for more details on these codes. -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFRow.java
r34072 r36092 95 95 * 96 96 * @return HSSFCell a high level representation of the created cell. 97 * @throws IllegalArgumentException if columnIndex <0 or greater than 255,97 * @throws IllegalArgumentException if columnIndex < 0 or greater than 255, 98 98 * the maximum number of columns supported by the Excel binary format (.xls) 99 99 */ … … 113 113 * 114 114 * @return HSSFCell a high level representation of the created cell. 115 * @throws IllegalArgumentException if columnIndex <0 or greater than 255,115 * @throws IllegalArgumentException if columnIndex < 0 or greater than 255, 116 116 * the maximum number of columns supported by the Excel binary format (.xls) 117 117 */ -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
r30737 r36092 299 299 /** 300 300 * Get the HSSFSheet object at the given index. 301 * @param index of the sheet number (0-based physical & logical) 301 * @param index of the sheet number (0-based physical & logical) 302 302 * @return HSSFSheet at the provided index 303 303 */ -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java
r28000 r36092 167 167 * @return the nth component; 168 168 * 169 * @exception ArrayIndexOutOfBoundsException if n <0 or n>=169 * @exception ArrayIndexOutOfBoundsException if n < 0 or n >= 170 170 * length() 171 171 */ -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/poifs/property/DirectoryProperty.java
r30737 r36092 116 116 * @param o2 second object to compare, better be a Property 117 117 * 118 * @return negative value if o1 <o2,118 * @return negative value if o1 < o2, 119 119 * zero if o1 == o2, 120 * positive value if o1 >o2.120 * positive value if o1 > o2. 121 121 */ 122 122 public int compare(Property o1, Property o2) -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/formula/Formula.java
r28000 r36092 144 144 * The return value is usually not the same as the location of the cell containing this formula. 145 145 * 146 * @return the firstRow & firstColumn of an array formula or shared formula that this formula 146 * @return the firstRow & firstColumn of an array formula or shared formula that this formula 147 147 * belongs to. <code>null</code> if this formula is not part of an array or shared formula. 148 148 */ -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/usermodel/Row.java
r34072 r36092 31 31 * @param column - the column number this cell represents 32 32 * @return Cell a high level representation of the created cell. 33 * @throws IllegalArgumentException if columnIndex <0 or greater than the maximum number of supported columns33 * @throws IllegalArgumentException if columnIndex < 0 or greater than the maximum number of supported columns 34 34 * (255 for *.xls, 1048576 for *.xlsx) 35 35 */ … … 44 44 * @param column - the column number this cell represents 45 45 * @return Cell a high level representation of the created cell. 46 * @throws IllegalArgumentException if columnIndex <0 or greate than a maximum number of supported columns46 * @throws IllegalArgumentException if columnIndex < 0 or greate than a maximum number of supported columns 47 47 * (255 for *.xls, 1048576 for *.xlsx) 48 48 */ … … 53 53 * 54 54 * @param rowNum the row number (0-based) 55 * @throws IllegalArgumentException if rowNum <055 * @throws IllegalArgumentException if rowNum < 0 56 56 */ 57 57 void setRowNum(int rowNum); … … 78 78 * 79 79 * @return the cell at the given (0 based) index 80 * @throws IllegalArgumentException if cellnum <0 or the specified MissingCellPolicy is invalid80 * @throws IllegalArgumentException if cellnum < 0 or the specified MissingCellPolicy is invalid 81 81 * @see Row#RETURN_NULL_AND_BLANK 82 82 * @see Row#RETURN_BLANK_AS_NULL -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/usermodel/Workbook.java
r28000 r36092 31 31 * Get the Sheet object at the given index. 32 32 * 33 * @param index of the sheet number (0-based physical & logical) 33 * @param index of the sheet number (0-based physical & logical) 34 34 * @return Sheet at the provided index 35 35 */ -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/util/IntList.java
r28000 r36092 185 185 * 186 186 * @exception IndexOutOfBoundsException if the index is out of 187 * range (index <0 || index>= size()).187 * range (index < 0 || index >= size()). 188 188 */ 189 189
Note:
See TracChangeset
for help on using the changeset viewer.