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

ceylon.language.className_ Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package ceylon.language;

import com.redhat.ceylon.compiler.java.metadata.Ceylon;
import com.redhat.ceylon.compiler.java.metadata.Method;
import com.redhat.ceylon.compiler.java.metadata.Name;
import com.redhat.ceylon.compiler.java.metadata.TypeInfo;

@Ceylon(major = 8)
@Method
public final class className_ {
    
    private className_() {}
    
    public static java.lang.String className(@Name("obj")
    @TypeInfo("ceylon.language::Anything")
    final java.lang.Object object) {
        return object==null ? 
                "ceylon.language.null_" : 
                object.getClass().getName();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy