-
- All Known Implementing Classes:
Absent
,AbstractRecordOutlet
,AbstractRecordStreamlet
,AndOperator
,Attr
,AvroName
,AvroNamespace
,BinaryOperator
,BitwiseAndOperator
,BitwiseNotOperator
,BitwiseOrOperator
,BitwiseXorOperator
,Bool
,BridgeFunc
,ChildrenSelector
,ConditionalOperator
,Data
,DescendantsSelector
,Diagnostic
,DivideOperator
,DownlinkRecord
,DownlinkStreamlet
,EqOperator
,Expression
,Extant
,Field
,FilterSelector
,Func
,GeOperator
,GetAttrSelector
,GetItemSelector
,GetSelector
,GtOperator
,IdentitySelector
,InvokeOperator
,Item
,KeysSelector
,LambdaFunc
,LeOperator
,ListDownlinkRecord
,LiteralSelector
,LtOperator
,MapDownlinkRecord
,Mark
,MinusOperator
,ModuloOperator
,NegativeOperator
,NeOperator
,NotOperator
,Num
,Operator
,OrOperator
,PlusOperator
,PositiveOperator
,Record
,RecordModel
,RecordScope
,RecordStreamlet
,Selector
,Slot
,Span
,Tag
,Text
,TimesOperator
,UnaryOperator
,Uri
,UriAuthority
,UriFragment
,UriHost
,UriPath
,UriPattern
,UriPort
,UriQuery
,UriScheme
,UriUser
,Value
,ValueDownlinkRecord
,ValuesSelector
public interface Display
Type that can output a human readable display string.Display
implementations may useOutput.settings()
to tailor the format of their display strings. For example, display strings may be stylized whenOutputSettings.isStyled()
returnstrue
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> Output<T>
display(Output<T> output)
Writes a human readable, display-formatted string representation of this object tooutput
.
-
-
-
Method Detail
-
display
<T> Output<T> display(Output<T> output)
Writes a human readable, display-formatted string representation of this object tooutput
.- Returns:
- the continuation of the
output
. - Throws:
OutputException
- if theoutput
exits the cont state before the full display string has been written.
-
-