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

com.cyberark.conjur.util.Lang Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.cyberark.conjur.util;

/**
 *
 */
public class Lang {
    public static  T getOrElse(T value, T orElse){
        return value == null ? orElse : value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy