net.java.truecommons.shed.Links Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truecommons-shed Show documentation
Show all versions of truecommons-shed Show documentation
Hosts small but useful tools and utilities that didn't fit anywhere else.
/*
* Copyright (C) 2005-2012 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truecommons.shed;
import javax.annotation.CheckForNull;
import javax.annotation.concurrent.Immutable;
/**
* Static utility methods for links.
*
* @author Christian Schlichtherle
*/
@Immutable
public final class Links {
private Links() { }
/**
* Returns the nullable {@linkplain Link#get() target} of the given
* link.
* The returned target is {@code null} if and only if either the given
* link is {@code null} or its target is {@code null}.
*
* @param The type of the target.
* @param link a nullable link.
* @return The nullable {@linkplain Link#get() target} of the given
* link.
*/
public static @CheckForNull T target(@CheckForNull Link link) {
return null == link ? null : link.get();
}
}