mirror of https://github.com/apache/poi.git
javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894642 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a35532e9ea
commit
712fdd6226
|
@ -41,7 +41,7 @@ import static org.apache.logging.log4j.util.Unbox.box;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unicode String - just standard fields that are in several records.
|
* Unicode String - just standard fields that are in several records.
|
||||||
* It is considered more desirable then repeating it in all of them.<p>
|
* It is considered more desirable than repeating it in all of them.<p>
|
||||||
* This is often called a XLUnicodeRichExtendedString in MS documentation.
|
* This is often called a XLUnicodeRichExtendedString in MS documentation.
|
||||||
*/
|
*/
|
||||||
public class UnicodeString implements Comparable<UnicodeString>, Duplicatable, GenericRecord {
|
public class UnicodeString implements Comparable<UnicodeString>, Duplicatable, GenericRecord {
|
||||||
|
@ -73,7 +73,7 @@ public class UnicodeString implements Comparable<UnicodeString>, Duplicatable, G
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* construct a unicode string record and fill its fields, ID is ignored
|
* construct a unicode string record and fill its fields, ID is ignored
|
||||||
* @param in the RecordInputstream to read the record from
|
* @param in the RecordInputStream to read the record from
|
||||||
*/
|
*/
|
||||||
public UnicodeString(RecordInputStream in) {
|
public UnicodeString(RecordInputStream in) {
|
||||||
field_1_charCount = in.readShort();
|
field_1_charCount = in.readShort();
|
||||||
|
@ -127,7 +127,7 @@ public class UnicodeString implements Comparable<UnicodeString>, Duplicatable, G
|
||||||
}
|
}
|
||||||
UnicodeString other = (UnicodeString) o;
|
UnicodeString other = (UnicodeString) o;
|
||||||
|
|
||||||
//OK lets do this in stages to return a quickly, first check the actual string
|
//OK lets do this in stages to return quickly, first check the actual string
|
||||||
if (field_1_charCount != other.field_1_charCount
|
if (field_1_charCount != other.field_1_charCount
|
||||||
|| field_2_optionflags != other.field_2_optionflags
|
|| field_2_optionflags != other.field_2_optionflags
|
||||||
|| !field_3_string.equals(other.field_3_string)) {
|
|| !field_3_string.equals(other.field_3_string)) {
|
||||||
|
|
Loading…
Reference in New Issue