本文整理汇总了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);
}