public final class Severity extends EnumSyntax implements Attribute
PrinterStateReason
属性の重要度を示す印刷属性クラス (列挙型) です。
Severity 自体は印刷サービスの属性セットでは直接使用されず、代わりに、PrinterStateReasons
属性が印刷サービスの属性セットで使用されます。PrinterStateReasons
属性には、印刷サービスのステータスに関連する PrinterStateReason
オブジェクトがまったく含まれない場合もあり、1 つ以上含まれる場合もあります。PrinterStateReason
オブジェクトは、REPORT (重要度低)、WARNING、または ERROR (重要度高) の Severity レベルにそれぞれ関連付けられます。プリンタは対応する条件が true になったときに PrinterStateReason
オブジェクトを印刷サービスの PrinterStateReasons
属性に追加し、false になったときに PrinterStateReason
オブジェクトを削除します。印刷サービス全体の PrinterState
の変更とは無関係にこの処理が行われます。
IPP 互換性: Severity.toString()
は「error」、「warning」、または「report」のいずれかの値を返します。各 PrinterStateReason
および関連付けられた Severity
オブジェクトの toString()
メソッドで返される文字列値をハイフン ("-"
) でつないだものが、PrinterStateReasons
の IPP キーワード値を示します。getName()
によって返されるカテゴリ名は IPP 属性の名前を示します。
修飾子と型 | フィールドと説明 |
---|---|
static Severity |
ERROR
PrinterStateReason が「error」(重要度高) であることを示します。 |
static Severity |
REPORT
PrinterStateReason が「report」(重要度低) であることを示します。 |
static Severity |
WARNING
PrinterStateReason が「warning」であることを示します。warning の一部を無視するか、それともまったく無視するかを実装で選択できます。 |
修飾子 | コンストラクタと説明 |
---|---|
protected |
Severity(int value)
指定された整数値を使用して新しい重要度列挙値を構築します。
|
修飾子と型 | メソッドと説明 |
---|---|
Class<? extends Attribute> |
getCategory()
この印刷属性値の「カテゴリ」として使用される印刷属性クラスを返します。
|
protected EnumSyntax[] |
getEnumValueTable()
Severity クラスの列挙値テーブルを返します。
|
String |
getName()
属性値がインスタンスとなるカテゴリの名前を返します。
|
protected String[] |
getStringTable()
Severity クラスの文字列テーブルを返します。
|
clone, getOffset, getValue, hashCode, readResolve, toString
public static final Severity REPORT
PrinterStateReason
が「report」(重要度低) であることを示します。report の一部を無視するか、それともまったく無視するかを実装で選択できます。プリンタの状態についてより詳細に説明するもの、warning の予告として出されるものなどがあります。印刷物の出力に影響を与える内容は含まれません。public static final Severity WARNING
PrinterStateReason
が「warning」であることを示します。warning の一部を無視するか、それともまったく無視するかを実装で選択できます。主に error の予告として出されます。ジョブの完了を妨げる内容は含まれませんが、出力の品質が低下する場合があります。public static final Severity ERROR
PrinterStateReason
が「error」(重要度高) であることを示します。error を無視することはできません。この属性が 1 つ以上の error を含む場合、プリンタの PrinterState
属性は STOPPED である必要があります。protected String[] getStringTable()
getStringTable
、クラス: EnumSyntax
protected EnumSyntax[] getEnumValueTable()
getEnumValueTable
、クラス: EnumSyntax
public final Class<? extends Attribute> getCategory()
Severity クラスの場合、カテゴリは Severity クラス自身です。
getCategory
、インタフェース: Attribute
java.lang.Class
クラスのインスタンス。 バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.