Uses of Class
com.opengamma.strata.basics.value.ValueAdjustment
-
Packages that use ValueAdjustment Package Description com.opengamma.strata.basics.value Basic financial tools for working with values.com.opengamma.strata.market Data structures for market data. -
-
Uses of ValueAdjustment in com.opengamma.strata.basics.value
Fields in com.opengamma.strata.basics.value declared as ValueAdjustment Modifier and Type Field Description static ValueAdjustment
ValueAdjustment. NONE
An instance that makes no adjustment to the value.Methods in com.opengamma.strata.basics.value that return ValueAdjustment Modifier and Type Method Description ValueAdjustment
ValueStepSequence. getAdjustment()
Gets the adjustment representing the change that occurs at each step.ValueAdjustment
ValueStep. getValue()
Gets the value representing the change that occurs.static ValueAdjustment
ValueAdjustment. ofDeltaAmount(double deltaAmount)
Obtains an instance specifying an amount to add to the base value.static ValueAdjustment
ValueAdjustment. ofDeltaMultiplier(double deltaMultiplier)
Obtains an instance specifying a multiplication factor, adding it to the base value.static ValueAdjustment
ValueAdjustment. ofMultiplier(double multiplier)
Obtains an instance specifying a multiplication factor to apply to the base value.static ValueAdjustment
ValueAdjustment. ofReplace(double replacementValue)
Obtains an instance that replaces the base value.Methods in com.opengamma.strata.basics.value that return types with arguments of type ValueAdjustment Modifier and Type Method Description org.joda.beans.MetaProperty<ValueAdjustment>
ValueStepSequence.Meta. adjustment()
The meta-property for theadjustment
property.Class<? extends ValueAdjustment>
ValueAdjustment.Meta. beanType()
org.joda.beans.BeanBuilder<? extends ValueAdjustment>
ValueAdjustment.Meta. builder()
org.joda.beans.MetaProperty<ValueAdjustment>
ValueStep.Meta. value()
The meta-property for thevalue
property.Methods in com.opengamma.strata.basics.value with parameters of type ValueAdjustment Modifier and Type Method Description static ValueStep
ValueStep. of(int periodIndex, ValueAdjustment value)
Obtains an instance that applies at the specified schedule period index.static ValueStep
ValueStep. of(LocalDate date, ValueAdjustment value)
Obtains an instance that applies at the specified date.static ValueStepSequence
ValueStepSequence. of(LocalDate firstStepDate, LocalDate lastStepDate, Frequency frequency, ValueAdjustment adjustment)
Obtains an instance from the dates, frequency and change.ValueStep.Builder
ValueStep.Builder. value(ValueAdjustment value)
Sets the value representing the change that occurs. -
Uses of ValueAdjustment in com.opengamma.strata.market
Methods in com.opengamma.strata.market that return ValueAdjustment Modifier and Type Method Description abstract ValueAdjustment
ShiftType. toValueAdjustment(double shiftAmount)
Returns a value adjustment that applies the shift amount using appropriate logic for the shift type.
-