lowentry.ue4.libs.jackson.databind.util.Named Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lowentryue4 Show documentation
Show all versions of lowentryue4 Show documentation
A Java library for the Low Entry UE4 plugins.
package lowentry.ue4.libs.jackson.databind.util;
/**
* Simple tag interface mostly to allow sorting by name.
*/
@SuppressWarnings("all")
public interface Named {
public String getName();
}