public interface FieldLike
| Modifier and Type | Method and Description | 
|---|---|
<T> Field<T> | 
asField()
The underlying field representation of this object
 
 This method is useful for things like
  
SELECT y.*, (SELECT a FROM x) FROM y | 
<T> Field<T> | 
asField(String alias)
The underlying field representation of this object
 
 This method is useful for things like
  
SELECT y.*, (SELECT a FROM x) [alias] FROM y
 
 Note that the case-sensitivity of the returned field depends on
 Settings.getRenderNameStyle(). | 
<T> Field<T> asField()
 This method is useful for things like
 SELECT y.*, (SELECT a FROM x) FROM y
<T> Field<T> asField(String alias)
 This method is useful for things like
 SELECT y.*, (SELECT a FROM x) [alias] FROM y
 
 Note that the case-sensitivity of the returned field depends on
 Settings.getRenderNameStyle(). By default, field aliases are
 quoted, and thus case-sensitive!
Copyright © 2014. All Rights Reserved.