Record Class ExtRefInfo.ExtRefBayReference
java.lang.Object
java.lang.Record
org.lfenergy.compas.sct.commons.dto.ExtRefInfo.ExtRefBayReference
- Record Components:
- iedName- The name of the IED containing bay
- compasBay- The Bay object
- extRef- The ExtRef object
- Enclosing class:
- ExtRefInfo
public static record ExtRefInfo.ExtRefBayReference(String iedName, TCompasBay compasBay, TExtRef extRef)
extends Record
ExtRef and related Bay model
- 
Constructor SummaryConstructorsConstructorDescriptionExtRefBayReference(String iedName, TCompasBay compasBay, TExtRef extRef) Creates an instance of aExtRefBayReferencerecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thecompasBayrecord component.final booleanIndicates whether some other object is "equal to" this one.extRef()Returns the value of theextRefrecord component.final inthashCode()Returns a hash code value for this object.iedName()Returns the value of theiedNamerecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details
- 
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 withObjects::equals(Object,Object).
- 
iedNameReturns the value of theiedNamerecord component.- Returns:
- the value of the iedNamerecord component
 
- 
compasBayReturns the value of thecompasBayrecord component.- Returns:
- the value of the compasBayrecord component
 
- 
extRefReturns the value of theextRefrecord component.- Returns:
- the value of the extRefrecord component
 
 
-