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

com.microsoft.kiota.serialization.ValuedEnumParser Maven / Gradle / Ivy

The newest version!
package com.microsoft.kiota.serialization;

import jakarta.annotation.Nonnull;
import jakarta.annotation.Nullable;

/** The interface for a valued enum parser. */
@FunctionalInterface
public interface ValuedEnumParser {
    /**
     * Gets an enum from it's string value.
     * @param value the string value of the enum.
     * @return the enum value derived from the string.
     */
    @Nullable T forValue(@Nonnull String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy