PrinterStatus enum

The status of the printer.

Inheritance
Available extensions

Values

doorOpen → const PrinterStatus

The door of the printer is open. Printer still accepts print jobs.

const PrinterStatus('DOOR_OPEN')
trayMissing → const PrinterStatus

The tray of the printer is missing. Printer still accepts print jobs.

const PrinterStatus('TRAY_MISSING')
outOfInk → const PrinterStatus

The printer is out of ink. Printer still accepts print jobs.

const PrinterStatus('OUT_OF_INK')
outOfPaper → const PrinterStatus

The printer is out of paper. Printer still accepts print jobs.

const PrinterStatus('OUT_OF_PAPER')
outputFull → const PrinterStatus

The output area of the printer (e.g. tray) is full. Printer still accepts print jobs.

const PrinterStatus('OUTPUT_FULL')
paperJam → const PrinterStatus

The printer has a paper jam. Printer still accepts print jobs.

const PrinterStatus('PAPER_JAM')
genericIssue → const PrinterStatus

Some generic issue. Printer still accepts print jobs.

const PrinterStatus('GENERIC_ISSUE')
stopped → const PrinterStatus

The printer is stopped and doesn't print but still accepts print jobs.

const PrinterStatus('STOPPED')
unreachable → const PrinterStatus

The printer is unreachable and doesn't accept print jobs.

const PrinterStatus('UNREACHABLE')
expiredCertificate → const PrinterStatus

The SSL certificate is expired. Printer accepts jobs but they fail.

const PrinterStatus('EXPIRED_CERTIFICATE')
available → const PrinterStatus

The printer is available.

const PrinterStatus('AVAILABLE')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
toJS String
no setter
value String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromJS(String value) PrinterStatus

Constants

values → const List<PrinterStatus>
A constant List of the values in this enum, in order of their declaration.