Пример #1
0
 public boolean isEmpty() {
   return super.isEmpty()
       && (value == null || value.isEmpty())
       && (comparator == null || comparator.isEmpty())
       && (units == null || units.isEmpty())
       && (system == null || system.isEmpty())
       && (code == null || code.isEmpty());
 }
Пример #2
0
 public boolean isEmpty() {
   return super.isEmpty()
       && (system == null || system.isEmpty())
       && (version == null || version.isEmpty())
       && (code == null || code.isEmpty())
       && (display == null || display.isEmpty())
       && (userSelected == null || userSelected.isEmpty());
 }
Пример #3
0
 public boolean isEmpty() {
   return super.isEmpty()
       && (contentType == null || contentType.isEmpty())
       && (language == null || language.isEmpty())
       && (data == null || data.isEmpty())
       && (url == null || url.isEmpty())
       && (size == null || size.isEmpty())
       && (hash == null || hash.isEmpty())
       && (title == null || title.isEmpty())
       && (creation == null || creation.isEmpty());
 }
Пример #4
0
 public boolean isEmpty() {
   return super.isEmpty() && (url == null || url.isEmpty()) && (value == null || value.isEmpty());
 }
Пример #5
0
 public boolean hasProfile() {
   if (this.profile == null) return false;
   for (UriType item : this.profile) if (!item.isEmpty()) return true;
   return false;
 }