All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.digitalcollections.iiif.presentation.model.api.v2.PropertyValue Maven / Gradle / Ivy

There is a newer version: 3.2.6
Show newest version
package de.digitalcollections.iiif.presentation.model.api.v2;

import java.util.List;

public interface PropertyValue {
  List getValues();

  default String getFirstValue() {
    return getValues().get(0);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy