/** * Copyright (C) 2012 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.financial.security.option; import java.util.Map; import org.joda.beans.Bean; import org.joda.beans.BeanBuilder; import org.joda.beans.BeanDefinition; import org.joda.beans.JodaBeanUtils; import org.joda.beans.MetaProperty; import org.joda.beans.Property; import org.joda.beans.PropertyDefinition; import org.joda.beans.impl.direct.DirectBeanBuilder; import org.joda.beans.impl.direct.DirectMetaProperty; import org.joda.beans.impl.direct.DirectMetaPropertyMap; import com.opengamma.financial.security.FinancialSecurity; import com.opengamma.financial.security.FinancialSecurityVisitor; import com.opengamma.id.ExternalId; import com.opengamma.master.security.SecurityDescription; import com.opengamma.util.money.Currency; import com.opengamma.util.time.Expiry; /** * A security for commodity future options. */ @BeanDefinition @SecurityDescription(type = CommodityFutureOptionSecurity.SECURITY_TYPE, description = "Commodity future option") public class CommodityFutureOptionSecurity extends FinancialSecurity { /** Serialization version. */ private static final long serialVersionUID = 1L; /** * The security type. */ public static final String SECURITY_TYPE = "COMMODITYFUTURE_OPTION"; /** * The exchange. */ @PropertyDefinition(validate = "notNull") private String _tradingExchange; /** * The settlement exchange. */ @PropertyDefinition(validate = "notNull") private String _settlementExchange; /** * The expiry. */ @PropertyDefinition(validate = "notNull") private Expiry _expiry; /** * The exercise type. */ @PropertyDefinition(validate = "notNull") private ExerciseType _exerciseType; /** * The underlying identifier. */ @PropertyDefinition(validate = "notNull") private ExternalId _underlyingId; /** * The point value. */ @PropertyDefinition private double _pointValue; /** * The currency. */ @PropertyDefinition(validate = "notNull") private Currency _currency; /** * The strike. */ @PropertyDefinition private double _strike; /** * The option type. */ @PropertyDefinition(validate = "notNull") private OptionType _optionType; CommodityFutureOptionSecurity() { //For builder super(SECURITY_TYPE); } public CommodityFutureOptionSecurity(String tradingExchange, String settlementExchange, Expiry expiry, ExerciseType exerciseType, ExternalId underlyingIdentifier, double pointValue, Currency currency, double strike, OptionType optionType) { super(SECURITY_TYPE); setTradingExchange(tradingExchange); setSettlementExchange(settlementExchange); setExpiry(expiry); setExerciseType(exerciseType); setUnderlyingId(underlyingIdentifier); setPointValue(pointValue); setCurrency(currency); setStrike(strike); setOptionType(optionType); } //------------------------------------------------------------------------- @Override public final <T> T accept(FinancialSecurityVisitor<T> visitor) { return visitor.visitCommodityFutureOptionSecurity(this); } //------------------------- AUTOGENERATED START ------------------------- ///CLOVER:OFF /** * The meta-bean for {@code CommodityFutureOptionSecurity}. * @return the meta-bean, not null */ public static CommodityFutureOptionSecurity.Meta meta() { return CommodityFutureOptionSecurity.Meta.INSTANCE; } static { JodaBeanUtils.registerMetaBean(CommodityFutureOptionSecurity.Meta.INSTANCE); } @Override public CommodityFutureOptionSecurity.Meta metaBean() { return CommodityFutureOptionSecurity.Meta.INSTANCE; } //----------------------------------------------------------------------- /** * Gets the exchange. * @return the value of the property, not null */ public String getTradingExchange() { return _tradingExchange; } /** * Sets the exchange. * @param tradingExchange the new value of the property, not null */ public void setTradingExchange(String tradingExchange) { JodaBeanUtils.notNull(tradingExchange, "tradingExchange"); this._tradingExchange = tradingExchange; } /** * Gets the the {@code tradingExchange} property. * @return the property, not null */ public final Property<String> tradingExchange() { return metaBean().tradingExchange().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the settlement exchange. * @return the value of the property, not null */ public String getSettlementExchange() { return _settlementExchange; } /** * Sets the settlement exchange. * @param settlementExchange the new value of the property, not null */ public void setSettlementExchange(String settlementExchange) { JodaBeanUtils.notNull(settlementExchange, "settlementExchange"); this._settlementExchange = settlementExchange; } /** * Gets the the {@code settlementExchange} property. * @return the property, not null */ public final Property<String> settlementExchange() { return metaBean().settlementExchange().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the expiry. * @return the value of the property, not null */ public Expiry getExpiry() { return _expiry; } /** * Sets the expiry. * @param expiry the new value of the property, not null */ public void setExpiry(Expiry expiry) { JodaBeanUtils.notNull(expiry, "expiry"); this._expiry = expiry; } /** * Gets the the {@code expiry} property. * @return the property, not null */ public final Property<Expiry> expiry() { return metaBean().expiry().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the exercise type. * @return the value of the property, not null */ public ExerciseType getExerciseType() { return _exerciseType; } /** * Sets the exercise type. * @param exerciseType the new value of the property, not null */ public void setExerciseType(ExerciseType exerciseType) { JodaBeanUtils.notNull(exerciseType, "exerciseType"); this._exerciseType = exerciseType; } /** * Gets the the {@code exerciseType} property. * @return the property, not null */ public final Property<ExerciseType> exerciseType() { return metaBean().exerciseType().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the underlying identifier. * @return the value of the property, not null */ public ExternalId getUnderlyingId() { return _underlyingId; } /** * Sets the underlying identifier. * @param underlyingId the new value of the property, not null */ public void setUnderlyingId(ExternalId underlyingId) { JodaBeanUtils.notNull(underlyingId, "underlyingId"); this._underlyingId = underlyingId; } /** * Gets the the {@code underlyingId} property. * @return the property, not null */ public final Property<ExternalId> underlyingId() { return metaBean().underlyingId().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the point value. * @return the value of the property */ public double getPointValue() { return _pointValue; } /** * Sets the point value. * @param pointValue the new value of the property */ public void setPointValue(double pointValue) { this._pointValue = pointValue; } /** * Gets the the {@code pointValue} property. * @return the property, not null */ public final Property<Double> pointValue() { return metaBean().pointValue().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the currency. * @return the value of the property, not null */ public Currency getCurrency() { return _currency; } /** * Sets the currency. * @param currency the new value of the property, not null */ public void setCurrency(Currency currency) { JodaBeanUtils.notNull(currency, "currency"); this._currency = currency; } /** * Gets the the {@code currency} property. * @return the property, not null */ public final Property<Currency> currency() { return metaBean().currency().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the strike. * @return the value of the property */ public double getStrike() { return _strike; } /** * Sets the strike. * @param strike the new value of the property */ public void setStrike(double strike) { this._strike = strike; } /** * Gets the the {@code strike} property. * @return the property, not null */ public final Property<Double> strike() { return metaBean().strike().createProperty(this); } //----------------------------------------------------------------------- /** * Gets the option type. * @return the value of the property, not null */ public OptionType getOptionType() { return _optionType; } /** * Sets the option type. * @param optionType the new value of the property, not null */ public void setOptionType(OptionType optionType) { JodaBeanUtils.notNull(optionType, "optionType"); this._optionType = optionType; } /** * Gets the the {@code optionType} property. * @return the property, not null */ public final Property<OptionType> optionType() { return metaBean().optionType().createProperty(this); } //----------------------------------------------------------------------- @Override public CommodityFutureOptionSecurity clone() { return JodaBeanUtils.cloneAlways(this); } @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj != null && obj.getClass() == this.getClass()) { CommodityFutureOptionSecurity other = (CommodityFutureOptionSecurity) obj; return JodaBeanUtils.equal(getTradingExchange(), other.getTradingExchange()) && JodaBeanUtils.equal(getSettlementExchange(), other.getSettlementExchange()) && JodaBeanUtils.equal(getExpiry(), other.getExpiry()) && JodaBeanUtils.equal(getExerciseType(), other.getExerciseType()) && JodaBeanUtils.equal(getUnderlyingId(), other.getUnderlyingId()) && JodaBeanUtils.equal(getPointValue(), other.getPointValue()) && JodaBeanUtils.equal(getCurrency(), other.getCurrency()) && JodaBeanUtils.equal(getStrike(), other.getStrike()) && JodaBeanUtils.equal(getOptionType(), other.getOptionType()) && super.equals(obj); } return false; } @Override public int hashCode() { int hash = 7; hash = hash * 31 + JodaBeanUtils.hashCode(getTradingExchange()); hash = hash * 31 + JodaBeanUtils.hashCode(getSettlementExchange()); hash = hash * 31 + JodaBeanUtils.hashCode(getExpiry()); hash = hash * 31 + JodaBeanUtils.hashCode(getExerciseType()); hash = hash * 31 + JodaBeanUtils.hashCode(getUnderlyingId()); hash = hash * 31 + JodaBeanUtils.hashCode(getPointValue()); hash = hash * 31 + JodaBeanUtils.hashCode(getCurrency()); hash = hash * 31 + JodaBeanUtils.hashCode(getStrike()); hash = hash * 31 + JodaBeanUtils.hashCode(getOptionType()); return hash ^ super.hashCode(); } @Override public String toString() { StringBuilder buf = new StringBuilder(320); buf.append("CommodityFutureOptionSecurity{"); int len = buf.length(); toString(buf); if (buf.length() > len) { buf.setLength(buf.length() - 2); } buf.append('}'); return buf.toString(); } @Override protected void toString(StringBuilder buf) { super.toString(buf); buf.append("tradingExchange").append('=').append(JodaBeanUtils.toString(getTradingExchange())).append(',').append(' '); buf.append("settlementExchange").append('=').append(JodaBeanUtils.toString(getSettlementExchange())).append(',').append(' '); buf.append("expiry").append('=').append(JodaBeanUtils.toString(getExpiry())).append(',').append(' '); buf.append("exerciseType").append('=').append(JodaBeanUtils.toString(getExerciseType())).append(',').append(' '); buf.append("underlyingId").append('=').append(JodaBeanUtils.toString(getUnderlyingId())).append(',').append(' '); buf.append("pointValue").append('=').append(JodaBeanUtils.toString(getPointValue())).append(',').append(' '); buf.append("currency").append('=').append(JodaBeanUtils.toString(getCurrency())).append(',').append(' '); buf.append("strike").append('=').append(JodaBeanUtils.toString(getStrike())).append(',').append(' '); buf.append("optionType").append('=').append(JodaBeanUtils.toString(getOptionType())).append(',').append(' '); } //----------------------------------------------------------------------- /** * The meta-bean for {@code CommodityFutureOptionSecurity}. */ public static class Meta extends FinancialSecurity.Meta { /** * The singleton instance of the meta-bean. */ static final Meta INSTANCE = new Meta(); /** * The meta-property for the {@code tradingExchange} property. */ private final MetaProperty<String> _tradingExchange = DirectMetaProperty.ofReadWrite( this, "tradingExchange", CommodityFutureOptionSecurity.class, String.class); /** * The meta-property for the {@code settlementExchange} property. */ private final MetaProperty<String> _settlementExchange = DirectMetaProperty.ofReadWrite( this, "settlementExchange", CommodityFutureOptionSecurity.class, String.class); /** * The meta-property for the {@code expiry} property. */ private final MetaProperty<Expiry> _expiry = DirectMetaProperty.ofReadWrite( this, "expiry", CommodityFutureOptionSecurity.class, Expiry.class); /** * The meta-property for the {@code exerciseType} property. */ private final MetaProperty<ExerciseType> _exerciseType = DirectMetaProperty.ofReadWrite( this, "exerciseType", CommodityFutureOptionSecurity.class, ExerciseType.class); /** * The meta-property for the {@code underlyingId} property. */ private final MetaProperty<ExternalId> _underlyingId = DirectMetaProperty.ofReadWrite( this, "underlyingId", CommodityFutureOptionSecurity.class, ExternalId.class); /** * The meta-property for the {@code pointValue} property. */ private final MetaProperty<Double> _pointValue = DirectMetaProperty.ofReadWrite( this, "pointValue", CommodityFutureOptionSecurity.class, Double.TYPE); /** * The meta-property for the {@code currency} property. */ private final MetaProperty<Currency> _currency = DirectMetaProperty.ofReadWrite( this, "currency", CommodityFutureOptionSecurity.class, Currency.class); /** * The meta-property for the {@code strike} property. */ private final MetaProperty<Double> _strike = DirectMetaProperty.ofReadWrite( this, "strike", CommodityFutureOptionSecurity.class, Double.TYPE); /** * The meta-property for the {@code optionType} property. */ private final MetaProperty<OptionType> _optionType = DirectMetaProperty.ofReadWrite( this, "optionType", CommodityFutureOptionSecurity.class, OptionType.class); /** * The meta-properties. */ private final Map<String, MetaProperty<?>> _metaPropertyMap$ = new DirectMetaPropertyMap( this, (DirectMetaPropertyMap) super.metaPropertyMap(), "tradingExchange", "settlementExchange", "expiry", "exerciseType", "underlyingId", "pointValue", "currency", "strike", "optionType"); /** * Restricted constructor. */ protected Meta() { } @Override protected MetaProperty<?> metaPropertyGet(String propertyName) { switch (propertyName.hashCode()) { case -661485980: // tradingExchange return _tradingExchange; case 389497452: // settlementExchange return _settlementExchange; case -1289159373: // expiry return _expiry; case -466331342: // exerciseType return _exerciseType; case -771625640: // underlyingId return _underlyingId; case 1257391553: // pointValue return _pointValue; case 575402001: // currency return _currency; case -891985998: // strike return _strike; case 1373587791: // optionType return _optionType; } return super.metaPropertyGet(propertyName); } @Override public BeanBuilder<? extends CommodityFutureOptionSecurity> builder() { return new DirectBeanBuilder<CommodityFutureOptionSecurity>(new CommodityFutureOptionSecurity()); } @Override public Class<? extends CommodityFutureOptionSecurity> beanType() { return CommodityFutureOptionSecurity.class; } @Override public Map<String, MetaProperty<?>> metaPropertyMap() { return _metaPropertyMap$; } //----------------------------------------------------------------------- /** * The meta-property for the {@code tradingExchange} property. * @return the meta-property, not null */ public final MetaProperty<String> tradingExchange() { return _tradingExchange; } /** * The meta-property for the {@code settlementExchange} property. * @return the meta-property, not null */ public final MetaProperty<String> settlementExchange() { return _settlementExchange; } /** * The meta-property for the {@code expiry} property. * @return the meta-property, not null */ public final MetaProperty<Expiry> expiry() { return _expiry; } /** * The meta-property for the {@code exerciseType} property. * @return the meta-property, not null */ public final MetaProperty<ExerciseType> exerciseType() { return _exerciseType; } /** * The meta-property for the {@code underlyingId} property. * @return the meta-property, not null */ public final MetaProperty<ExternalId> underlyingId() { return _underlyingId; } /** * The meta-property for the {@code pointValue} property. * @return the meta-property, not null */ public final MetaProperty<Double> pointValue() { return _pointValue; } /** * The meta-property for the {@code currency} property. * @return the meta-property, not null */ public final MetaProperty<Currency> currency() { return _currency; } /** * The meta-property for the {@code strike} property. * @return the meta-property, not null */ public final MetaProperty<Double> strike() { return _strike; } /** * The meta-property for the {@code optionType} property. * @return the meta-property, not null */ public final MetaProperty<OptionType> optionType() { return _optionType; } //----------------------------------------------------------------------- @Override protected Object propertyGet(Bean bean, String propertyName, boolean quiet) { switch (propertyName.hashCode()) { case -661485980: // tradingExchange return ((CommodityFutureOptionSecurity) bean).getTradingExchange(); case 389497452: // settlementExchange return ((CommodityFutureOptionSecurity) bean).getSettlementExchange(); case -1289159373: // expiry return ((CommodityFutureOptionSecurity) bean).getExpiry(); case -466331342: // exerciseType return ((CommodityFutureOptionSecurity) bean).getExerciseType(); case -771625640: // underlyingId return ((CommodityFutureOptionSecurity) bean).getUnderlyingId(); case 1257391553: // pointValue return ((CommodityFutureOptionSecurity) bean).getPointValue(); case 575402001: // currency return ((CommodityFutureOptionSecurity) bean).getCurrency(); case -891985998: // strike return ((CommodityFutureOptionSecurity) bean).getStrike(); case 1373587791: // optionType return ((CommodityFutureOptionSecurity) bean).getOptionType(); } return super.propertyGet(bean, propertyName, quiet); } @Override protected void propertySet(Bean bean, String propertyName, Object newValue, boolean quiet) { switch (propertyName.hashCode()) { case -661485980: // tradingExchange ((CommodityFutureOptionSecurity) bean).setTradingExchange((String) newValue); return; case 389497452: // settlementExchange ((CommodityFutureOptionSecurity) bean).setSettlementExchange((String) newValue); return; case -1289159373: // expiry ((CommodityFutureOptionSecurity) bean).setExpiry((Expiry) newValue); return; case -466331342: // exerciseType ((CommodityFutureOptionSecurity) bean).setExerciseType((ExerciseType) newValue); return; case -771625640: // underlyingId ((CommodityFutureOptionSecurity) bean).setUnderlyingId((ExternalId) newValue); return; case 1257391553: // pointValue ((CommodityFutureOptionSecurity) bean).setPointValue((Double) newValue); return; case 575402001: // currency ((CommodityFutureOptionSecurity) bean).setCurrency((Currency) newValue); return; case -891985998: // strike ((CommodityFutureOptionSecurity) bean).setStrike((Double) newValue); return; case 1373587791: // optionType ((CommodityFutureOptionSecurity) bean).setOptionType((OptionType) newValue); return; } super.propertySet(bean, propertyName, newValue, quiet); } @Override protected void validate(Bean bean) { JodaBeanUtils.notNull(((CommodityFutureOptionSecurity) bean)._tradingExchange, "tradingExchange"); JodaBeanUtils.notNull(((CommodityFutureOptionSecurity) bean)._settlementExchange, "settlementExchange"); JodaBeanUtils.notNull(((CommodityFutureOptionSecurity) bean)._expiry, "expiry"); JodaBeanUtils.notNull(((CommodityFutureOptionSecurity) bean)._exerciseType, "exerciseType"); JodaBeanUtils.notNull(((CommodityFutureOptionSecurity) bean)._underlyingId, "underlyingId"); JodaBeanUtils.notNull(((CommodityFutureOptionSecurity) bean)._currency, "currency"); JodaBeanUtils.notNull(((CommodityFutureOptionSecurity) bean)._optionType, "optionType"); super.validate(bean); } } ///CLOVER:ON //-------------------------- AUTOGENERATED END -------------------------- }