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

io.edurt.datacap.core.HintKey Maven / Gradle / Ivy

There is a newer version: 2024.4.0
Show newest version
package io.edurt.datacap.core;

import java.util.Arrays;
import java.util.Objects;

public enum HintKey
{
    decoder,
    sample_key,
    noop;

    public static HintKey fromString(String string)
    {
        return Arrays.stream(values())
                .filter(t -> Objects.equals(t.toString(), string))
                .findFirst()
                .orElse(noop);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy