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

black.door.hate.LinkOrResource Maven / Gradle / Ivy

There is a newer version: v1r4t5
Show newest version
package black.door.hate;

import java.util.Optional;

/**
 * Created by nfischer on 1/31/2016.
 */
public interface LinkOrResource {

	HalLink asLink();

	default Optional asResource(){
		if(this instanceof HalResource){
			return Optional.of((HalResource) this);
		}else
			return Optional.empty();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy