org.unlaxer.jaddress.entity.standard.IDHolder Maven / Gradle / Ivy
package org.unlaxer.jaddress.entity.standard;
import org.unlaxer.util.collection.ID;
public interface IDHolder{
public ID id();
public static IDHolder of(ID id) {
return new IDHolder() {
@Override
public ID id() {
return id;
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy