Record Class SymbolAnalysisMoveProfileDTO
java.lang.Object
java.lang.Record
com.bluebell.greenhouse.platform.models.api.dto.symbol.analysis.SymbolAnalysisMoveProfileDTO
- Record Components:
horizons- horizonssigmaProfiles- sigma profiles
public record SymbolAnalysisMoveProfileDTO(List<ForwardMoveHorizonProfileDTO> horizons, List<SigmaMoveProfileDTO> sigmaProfiles)
extends Record
Move-profile DTO.
- Version:
- 2.0.4
- Author:
- Stephen Prizio
-
Constructor Summary
ConstructorsConstructorDescriptionSymbolAnalysisMoveProfileDTO(List<ForwardMoveHorizonProfileDTO> horizons, List<SigmaMoveProfileDTO> sigmaProfiles) Creates an instance of aSymbolAnalysisMoveProfileDTOrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic SymbolAnalysisMoveProfileDTOempty()Creates an empty DTO shell.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.horizons()Returns the value of thehorizonsrecord component.Returns the value of thesigmaProfilesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SymbolAnalysisMoveProfileDTO
public SymbolAnalysisMoveProfileDTO(List<ForwardMoveHorizonProfileDTO> horizons, List<SigmaMoveProfileDTO> sigmaProfiles) Creates an instance of aSymbolAnalysisMoveProfileDTOrecord class.- Parameters:
horizons- the value for thehorizonsrecord componentsigmaProfiles- the value for thesigmaProfilesrecord component
-
-
Method Details
-
empty
Creates an empty DTO shell.- Returns:
SymbolAnalysisMoveProfileDTO
-
toString
-
hashCode
-
equals
Indicates 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). -
horizons
-
sigmaProfiles
Returns the value of thesigmaProfilesrecord component.- Returns:
- the value of the
sigmaProfilesrecord component
-