| java.lang.Object com.flexive.sqlParser.Value com.flexive.sqlParser.Property
Property | public class Property extends Value (Code) | | Property reference class.
author: Gregor Schober (gregor.schober@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) |
Constructor Summary | |
public | Property(String tableAlias, String property, String field) Constructor.
Parameters: tableAlias - the table the property belongs to Parameters: property - the property Parameters: field - null, or the field to use from the property (eg. |
Method Summary | |
public String | getField() The field that should be used from the property, or null. | public String | getPropertyName() | public String | getTableAlias() Returns the table alias, this is a empty string the the value info
represents a constant value. | public boolean | hasField() Returns true if a field is set. | public synchronized boolean | isAssignment() | public boolean | isWildcard() Returns true if this property is a wildcard. | public String | toString() Returns a string representation of the object. |
Property | public Property(String tableAlias, String property, String field)(Code) | | Constructor.
Parameters: tableAlias - the table the property belongs to Parameters: property - the property Parameters: field - null, or the field to use from the property (eg. "m.mandator.name" where name is the field touse from the mandator) |
getField | public String getField()(Code) | | The field that should be used from the property, or null.
If set the value is always a uppercase string
the field |
getPropertyName | public String getPropertyName()(Code) | | Get the name of the property/assignment
name of the property/assignment |
getTableAlias | public String getTableAlias()(Code) | | Returns the table alias, this is a empty string the the value info
represents a constant value.
the table alias |
hasField | public boolean hasField()(Code) | | Returns true if a field is set.
true if a field is set |
isAssignment | public synchronized boolean isAssignment()(Code) | | Is this a property or an assignment?
property or assignment? |
isWildcard | public boolean isWildcard()(Code) | | Returns true if this property is a wildcard.
true if this property is a wildcard |
toString | public String toString()(Code) | | Returns a string representation of the object.
a string representation of the object |
|
|