Package org.jpedal.constants
Record Class Destination.FitV
java.lang.Object
java.lang.Record
org.jpedal.constants.Destination.FitV
- Record Components:
- left- the X coordinate to align with the left of the window
- All Implemented Interfaces:
- Destination
- Enclosing interface:
- Destination
Display the page so that the horizontal coordinate 
left
 is aligned with the left edge of the window, and scale the page
 just enough to fit its height within the window.- 
Nested Class SummaryNested classes/interfaces inherited from interface org.jpedal.constants.DestinationDestination.Fit, Destination.FitB, Destination.FitBH, Destination.FitBV, Destination.FitH, Destination.FitR, Destination.FitV, Destination.XYZ
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.floatleft()Returns the value of theleftrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
FitVpublic FitV(float left) Creates an instance of aFitVrecord class.- Parameters:
- left- the value for the- leftrecord component
 
 
- 
- 
Method Details- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='.
- 
leftpublic float left()Returns the value of theleftrecord component.- Returns:
- the value of the leftrecord component
 
 
-