本文整理匯總了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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}