Module io.github.mmm.property
Class PropertyFactoryBigInteger
- java.lang.Object
-
- io.github.mmm.property.factory.AbstractPropertyFactory<BigInteger,BigIntegerProperty>
-
- io.github.mmm.property.number.biginteger.PropertyFactoryBigInteger
-
- All Implemented Interfaces:
PropertyFactory<BigInteger,BigIntegerProperty>
public class PropertyFactoryBigInteger extends AbstractPropertyFactory<BigInteger,BigIntegerProperty>
Implementation ofPropertyFactoryforBigIntegerProperty.- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description PropertyFactoryBigInteger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegerPropertycreate(String name, Class<? extends BigInteger> valueClass, PropertyMetadata<BigInteger> metadata)Creates a new instance of the property.Class<BigIntegerProperty>getImplementationClass()Class<? extends ReadableProperty<BigInteger>>getReadableInterface()Class<BigInteger>getValueClass()Class<? extends WritableProperty<BigInteger>>getWritableInterface()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.github.mmm.property.factory.PropertyFactory
isPolymorphic
-
-
-
-
Method Detail
-
getValueClass
public Class<BigInteger> getValueClass()
- Returns:
- the
Classof theproperty value. May benullfor a generic property.
-
getReadableInterface
public Class<? extends ReadableProperty<BigInteger>> getReadableInterface()
- Returns:
- the
Classreflecting theReadablePropertyinterface. May benullif no dedicated readable interface exists.
-
getWritableInterface
public Class<? extends WritableProperty<BigInteger>> getWritableInterface()
- Returns:
- the
Classreflecting theWritablePropertyinterface. May benullif no dedicated writable interface exists.
-
getImplementationClass
public Class<BigIntegerProperty> getImplementationClass()
- Returns:
- the
Classreflecting theWritablePropertyimplementation.
-
create
public BigIntegerProperty create(String name, Class<? extends BigInteger> valueClass, PropertyMetadata<BigInteger> metadata)
Description copied from interface:PropertyFactoryCreates a new instance of the property.- Parameters:
name- theproperty name.valueClass- thevalue class.metadata- TODO- Returns:
- the new instance of the property.
-
-