Package org.apache.poi.hwpf.model
Class SavedByEntry
- java.lang.Object
-
- org.apache.poi.hwpf.model.SavedByEntry
-
@Internal public final class SavedByEntry extends java.lang.Object
A single entry in theSavedByTable
.
-
-
Constructor Summary
Constructors Constructor Description SavedByEntry(java.lang.String userName, java.lang.String saveLocation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
Compares this object with another, for equality.java.lang.String
getSaveLocation()
java.lang.String
getUserName()
int
hashCode()
Generates a hash code for consistency withequals(Object)
.java.lang.String
toString()
Returns a string for display.
-
-
-
Method Detail
-
getUserName
public java.lang.String getUserName()
-
getSaveLocation
public java.lang.String getSaveLocation()
-
equals
public boolean equals(java.lang.Object other)
Compares this object with another, for equality.- Overrides:
equals
in classjava.lang.Object
- Parameters:
other
- the object to compare to this one.- Returns:
true
iff the other object is equal to this one.
-
hashCode
public int hashCode()
Generates a hash code for consistency withequals(Object)
.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- the hash code.
-
toString
public java.lang.String toString()
Returns a string for display.- Overrides:
toString
in classjava.lang.Object
- Returns:
- the string.
-
-