of
构建一个 Attribute 实例。
Kotlin:
val attribute = Attribute.of<Foo>("foo")
Content copied to clipboard
Java:
final Attribute<Foo> foo = Attribute.of("foo");
final Attribute<Bar> bar = Attribute.of("bar", Bar.class);
Attribute.<Tar>of("tar"); // anonymous
Content copied to clipboard