- java.lang.Object
-
- swim.avro.AvroName
-
- All Implemented Interfaces:
Comparable<AvroName>
,Debug
,Display
public final class AvroName extends Object implements Comparable<AvroName>, Debug, Display
-
-
Constructor Summary
Constructors Constructor Description AvroName(AvroNamespace namespace, String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(AvroName that)
static AvroName
create(String name)
static AvroName
create(AvroNamespace namespace, String name)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.<T> Output<T>
display(Output<T> output)
Writes a human readable, display-formatted string representation of this object tooutput
.boolean
equals(Object other)
int
hashCode()
String
name()
AvroNamespace
namespace()
static AvroName
parse(String string)
String
toString()
-
-
-
Constructor Detail
-
AvroName
public AvroName(AvroNamespace namespace, String name)
-
-
Method Detail
-
namespace
public AvroNamespace namespace()
-
name
public String name()
-
compareTo
public int compareTo(AvroName that)
- Specified by:
compareTo
in interfaceComparable<AvroName>
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
display
public <T> Output<T> display(Output<T> output)
Description copied from interface:Display
Writes a human readable, display-formatted string representation of this object tooutput
.
-
create
public static AvroName create(AvroNamespace namespace, String name)
-
-