Package | com.pushtechnology.diffusion.paged |
Interface | public interface Lines |
Since : | 4.1 |
The lines can be represented as #isString() Strings or #isRecord() Records.
Method | Defined By | ||
---|---|---|---|
isRecord():Boolean
Indicates whether the lines are Record format. | Lines | ||
isString():Boolean
Indicates whether the lines are String format. | Lines | ||
lines():Array
Returns the lines in String format. | Lines | ||
records():Array
Returns the lines in Record format. | Lines | ||
toString():String | Lines |
isRecord | () | method |
public function isRecord():Boolean
Indicates whether the lines are Record format.
ReturnsBoolean — true if the lines are Record format in which case their values
can be obtained using the #records() method.
|
isString | () | method |
public function isString():Boolean
Indicates whether the lines are String format.
ReturnsBoolean — true if the lines are String format in which case their values
can be obtained using the #lines() method.
|
lines | () | method |
public function lines():Array
Returns the lines in String format.
ReturnsArray — the lines as an array of Strings.
|
records | () | method |
public function records():Array
Returns the lines in Record format.
ReturnsArray — the lines as an array of Records.
|
toString | () | method |
public function toString():String
ReturnsString |