Serializable, Cloneable
DocumentName, JobMessageFromOperator, JobName, JobOriginatingUserName, OutputDeviceAssigned, PrinterInfo, PrinterLocation, PrinterMakeAndModel, PrinterMessageFromOperator, PrinterName, RequestingUserName
public abstract class TextSyntax extends Object implements Serializable, Cloneable
TextSyntax is an abstract base class providing the common implementation of all attributes whose value is a string. The text attribute includes a locale to indicate the natural language. Thus, a text attribute always represents a localized string. Once constructed, a text attribute's value is immutable.| Modifier | Constructor | Description | 
|---|---|---|
| protected  | Constructs a  TextAttributewith the specified string and locale. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| boolean | equals | Returns whether this text attribute is equivalent to the passed in object. | 
| Locale | getLocale() | Returns this text attribute's text string's natural language (locale). | 
| String | getValue() | Returns this text attribute's text string. | 
| int | hashCode() | Returns a hashcode for this text attribute. | 
| String | toString() | Returns a  Stringidentifying this text attribute. | 
protected TextSyntax(String value, Locale locale)
TextAttribute with the specified string and locale.value - text stringlocale - natural language of the text string. null is interpreted to mean the default locale for as returned by Locale.getDefault()
NullPointerException - if value is null
public String getValue()
public Locale getLocale()
public int hashCode()
public boolean equals(Object object)
object is not null. object is an instance of class TextSyntax. object's underlying string are equal. object's locale are equal. public String toString()
String identifying this text attribute. The String is the attribute's underlying text string.
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/print/attribute/TextSyntax.html