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

com.vladsch.flexmark.experimental.util.mappers.ObjectClassifier Maven / Gradle / Ivy

Go to download

Contains experimental classes that may or may not work in all cases. Use at your own risk.

The newest version!
package com.vladsch.flexmark.experimental.util.mappers;

import java.util.function.Function;

public class ObjectClassifier implements Function> {
    final public static ObjectClassifier INSTANCE = new ObjectClassifier();

    private ObjectClassifier() {
    }

    @Override
    public Class apply(Object value) {
        return value.getClass();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy