Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ public interface AttributeKey<T> {
/** Returns the type of attribute for this key. Useful for building switch statements. */
AttributeType getType();

// TODO (jack-berg): uncomment when extended attributes are promoted from incubator to API
// default ExtendedAttributeKey<T> asExtendedAttributeKey() {
// return InternalAttributeKeyImpl.toExtendedAttributeKey(this);
// }

/** Returns a new AttributeKey for String valued attributes. */
static AttributeKey<String> stringKey(String key) {
return InternalAttributeKeyImpl.create(key, AttributeType.STRING);
Expand Down Expand Up @@ -72,7 +67,7 @@ static AttributeKey<List<Double>> doubleArrayKey(String key) {
}

/**
* Returns a new ExtendedAttributeKey for {@link Value} valued attributes.
* Returns a new AttributeKey for {@link Value} valued attributes.
*
* <p>Simple attributes ({@link AttributeType#STRING}, {@link AttributeType#LONG}, {@link
* AttributeType#DOUBLE}, {@link AttributeType#BOOLEAN}, {@link AttributeType#STRING_ARRAY},
Expand Down

This file was deleted.

Loading
Loading