Uses of Interface
it.tidalwave.role.ui.Displayable
-
Packages that use Displayable Package Description it.tidalwave.role.ui -
-
Uses of Displayable in it.tidalwave.role.ui
Subinterfaces of Displayable in it.tidalwave.role.ui Modifier and Type Interface Description interface
LocalizedDisplayable
A specializedDisplayable
which can manage names in multipleLocale
s.interface
MutableDisplayable
A specializedDisplayable
which is mutable (that is, its display name can be changed) and firesPropertyChangeEvent
s.interface
MutableLocalizedDisplayable
A specializedLocalizedDisplayable
which is mutable.Fields in it.tidalwave.role.ui declared as Displayable Modifier and Type Field Description static Displayable
Displayable. DEFAULT
A defaultDisplayable
with an empty display name.Fields in it.tidalwave.role.ui with type parameters of type Displayable Modifier and Type Field Description static java.lang.Class<Displayable>
Displayable. _Displayable_
Methods in it.tidalwave.role.ui that return Displayable Modifier and Type Method Description static Displayable
Displayable. of(java.lang.String displayName)
Creates an instance with a given display name.static Displayable
Displayable. of(java.lang.String displayName, java.lang.String toStringName)
Creates an instance with a given display name iand an explicit label fortoString()
.static <T> Displayable
Displayable. of(java.util.function.Function<T,java.lang.String> function, T object)
Creates an instance from aFunction
<T, String>
and a generic object that the function is applied to.static Displayable
Displayable. of(java.util.function.Supplier<java.lang.String> supplier)
Creates an instance from aSupplier
<String>
.Methods in it.tidalwave.role.ui that return types with arguments of type Displayable Modifier and Type Method Description static java.util.Comparator<Displayable>
Displayable. comparing()
Returns aComparator
for comparing two instances ofDisplayable
.
-