com.prezi.pride.Named Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pride-core Show documentation
Show all versions of pride-core Show documentation
Pride manages multiple Gradle modules as a single Gradle project
package com.prezi.pride;
public interface Named {
String getName();
interface Namer {
String getName(T value);
}
static Namer NAMED_NAMER = new Namer() {
@Override
public String getName(Named value) {
return value.getName();
}
};
static Namer
© 2015 - 2024 Weber Informatics LLC | Privacy Policy