public Extension copy() { Extension dst = new Extension(); copyValues(dst); dst.url = url == null ? null : url.copy(); dst.value = value == null ? null : value.copy(); return dst; }
public boolean isEmpty() { return super.isEmpty() && (url == null || url.isEmpty()) && (value == null || value.isEmpty()); }