com.planet_ink.coffee_mud.Libraries.interfaces
Interface DatabaseEngine.PollData

Enclosing interface:
DatabaseEngine

public static interface DatabaseEngine.PollData

Table category: DBPOLLS Raw record entry for the DBPOLLS table, where each record represents an entire poll and all of its results.


Method Summary
 java.lang.String authorName()
          The player Name of the author of the poll.
 java.lang.String description()
          The long description of the poll.
 long expiration()
          The real-timestamp after which this poll is expired.
 long flag()
          Special flag bitmap for this poll.
 java.lang.String name()
          The unique Name of the poll
 java.lang.String optionsXml()
          The options/multiple-choices for this poll.
 java.lang.String qualifyingMask()
          The Zapper Mask to decide who may participate in this poll.
 java.lang.String resultsXml()
          The player name keyed results/choices for this poll.
 java.lang.String subject()
          The short title of the poll.
 

Method Detail

name

java.lang.String name()
The unique Name of the poll

Returns:
unique Name of the poll

flag

long flag()
Special flag bitmap for this poll.

Returns:
flag bitmap
See Also:
Poll.FLAG_ABSTAIN, Poll.FLAG_ACTIVE

authorName

java.lang.String authorName()
The player Name of the author of the poll.

Returns:
Name of the author of the poll.

subject

java.lang.String subject()
The short title of the poll.

Returns:
short title of the poll.

description

java.lang.String description()
The long description of the poll.

Returns:
long description of the poll.

optionsXml

java.lang.String optionsXml()
The options/multiple-choices for this poll. In XML document format.

Returns:
the options to choose from xml

qualifyingMask

java.lang.String qualifyingMask()
The Zapper Mask to decide who may participate in this poll.

Returns:
the qualifying zapper mask

resultsXml

java.lang.String resultsXml()
The player name keyed results/choices for this poll. In XML document format.

Returns:
the results chosen in xml

expiration

long expiration()
The real-timestamp after which this poll is expired.

Returns:
the expiration timestamp of the poll