Package jakarta.websocket
Interface Encoder.Text<T>
- 
- Type Parameters:
- T- The type of the custom developer object that this Encoder can encode into a String.
 - All Superinterfaces:
- Encoder
 - Enclosing interface:
- Encoder
 
 public static interface Encoder.Text<T> extends Encoder This interface defines how to provide a way to convert a custom object into a text message.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface jakarta.websocket.EncoderEncoder.Binary<T>, Encoder.BinaryStream<T>, Encoder.Text<T>, Encoder.TextStream<T>
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringencode(T object)Encode the given object into a String.
 
- 
- 
- 
Method Detail- 
encodeString encode(T object) throws EncodeException Encode the given object into a String.- Parameters:
- object- the object being encoded.
- Returns:
- the encoded object as a string.
- Throws:
- EncodeException- The provided object could not be encoded as a string
 
 
- 
 
-