com.cyberark.conjur.util.Lang Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of conjur-api Show documentation
Show all versions of conjur-api Show documentation
Programmatic Java access to the Conjur API
package com.cyberark.conjur.util;
/**
*
*/
public class Lang {
public static T getOrElse(T value, T orElse){
return value == null ? orElse : value;
}
}