Record Class ExpiresFilter.Duration
java.lang.Object
java.lang.Record
org.apache.catalina.filters.ExpiresFilter.Duration
- Record Components:
- amount- Magnitude of duration
- unit- Unit of duration
- Enclosing class:
- ExpiresFilter
public static record ExpiresFilter.Duration(int amount, ExpiresFilter.DurationUnit unit)
extends Record
Duration composed of an 
amount and a unit- 
Constructor SummaryConstructorsConstructorDescriptionDuration(int amount, ExpiresFilter.DurationUnit unit) Creates an instance of aDurationrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionintamount()Returns the value of theamountrecord component.final booleanIndicates whether some other object is "equal to" this one.intgetUnit()final inthashCode()Returns a hash code value for this object.toString()Returns a string representation of this record class.unit()Returns the value of theunitrecord component.
- 
Constructor Details
- 
Method Details- 
getAmountpublic int getAmount()
- 
getUnit
- 
toString
- 
hashCode
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes.
- 
amount
- 
unit
 
-