當前位置: 首頁>>代碼示例>>Java>>正文


Java Property類代碼示例

本文整理匯總了Java中org.joda.beans.Property的典型用法代碼示例。如果您正苦於以下問題:Java Property類的具體用法?Java Property怎麽用?Java Property使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Property類屬於org.joda.beans包,在下文中一共展示了Property類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: property

import org.joda.beans.Property; //導入依賴的package包/類
@Override
public <R> Property<R> property(String propertyName) {
  return metaBean().<R>metaProperty(propertyName).createProperty(this);
}
 
開發者ID:jodastephen,項目名稱:compare-beangen,代碼行數:5,代碼來源:JodaBeansMutable.java

示例2: name

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code name} property.
 * @return the property, not null
 */
public final Property<String> name() {
  return metaBean().name().createProperty(this);
}
 
開發者ID:jodastephen,項目名稱:compare-beangen,代碼行數:8,代碼來源:JodaBeansMutable.java

示例3: birthDate

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code birthDate} property.
 * @return the property, not null
 */
public final Property<LocalDate> birthDate() {
  return metaBean().birthDate().createProperty(this);
}
 
開發者ID:jodastephen,項目名稱:compare-beangen,代碼行數:8,代碼來源:JodaBeansMutable.java

示例4: currency

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code currency} property.
 * @return the property, not null
 */
public final Property<Currency> currency() {
  return metaBean().currency().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:YieldCurveDefinition.java

示例5: phaseStart

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code phaseStart} property.
 * @return the property, not null
 */
public final Property<LocalTime> phaseStart() {
  return metaBean().phaseStart().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:ManageableExchangeDetail.java

示例6: optionExerciseType

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code optionExerciseType} property.
 * @return the property, not null
 */
public final Property<OptionExerciseType> optionExerciseType() {
  return metaBean().optionExerciseType().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:EquityIndexDividendFutureOptionSecurityBean.java

示例7: classifier

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code classifier} property.
 * @return the property, not null
 */
public final Property<String> classifier() {
  return metaBean().classifier().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:CombinedPositionMasterComponentFactory.java

示例8: threadNamePrefix

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code threadNamePrefix} property.
 * @return the property, not null
 */
public final Property<String> threadNamePrefix() {
  return metaBean().threadNamePrefix().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:ScheduledExecutorServiceComponentFactory.java

示例9: jmsConnector

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code jmsConnector} property.
 * @return the property, not null
 */
public final Property<JmsConnector> jmsConnector() {
  return metaBean().jmsConnector().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:RemoteSourcesComponentFactory.java

示例10: positionSource

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code positionSource} property.
 * @return the property, not null
 */
public final Property<PositionSource> positionSource() {
  return metaBean().positionSource().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:ToolContextComponentFactory.java

示例11: restructuringClause

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code restructuringClause} property.
 * @return the property, not null
 */
public final Property<RestructuringClause> restructuringClause() {
  return metaBean().restructuringClause().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:CreditDefaultSwapSecurity.java

示例12: uniqueId

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code uniqueId} property.
 * This field is managed by the master but must be set for updates.
 * @return the property, not null
 */
public final Property<UniqueId> uniqueId() {
  return metaBean().uniqueId().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:9,代碼來源:SecurityDocument.java

示例13: uniqueId

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code uniqueId} property.
 * @return the property, not null
 */
public final Property<UniqueId> uniqueId() {
  return metaBean().uniqueId().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:ConfigItem.java

示例14: operationName

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code operationName} property.
 * @return the property, not null
 */
public final Property<String> operationName() {
  return metaBean().operationName().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:SpreadCurveDefinition.java

示例15: securitySource

import org.joda.beans.Property; //導入依賴的package包/類
/**
 * Gets the the {@code securitySource} property.
 * @return the property, not null
 */
public final Property<SecuritySource> securitySource() {
  return metaBean().securitySource().createProperty(this);
}
 
開發者ID:DevStreet,項目名稱:FinanceAnalytics,代碼行數:8,代碼來源:WebsiteBasicsComponentFactory.java


注:本文中的org.joda.beans.Property類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。