Package com.healthmarketscience.jackcess
Interface PropertyMap.Property
-
- Enclosing interface:
- PropertyMap
public static interface PropertyMap.PropertyInfo about a property defined in a PropertyMap.
-
-
Method Detail
-
getName
String getName()
-
getType
DataType getType()
-
isDdl
boolean isDdl()
Whether or not this property is a DDL object. Iftrue, users can't change or delete the property in access without the dbSecWriteDef permission. Additionally, certain properties must be flagged correctly or the access engine may not recognize them correctly.
-
getValue
Object getValue()
-
setValue
void setValue(Object newValue)
Sets the new value for this property.Note, this change will not be persisted until the
PropertyMap.save()method has been called.
-
-