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

io.orchestrate.client.ItemKind Maven / Gradle / Ivy

Go to download

A high performance, asynchronous Java client to query the Orchestrate.io service.

The newest version!
package io.orchestrate.client;

import com.fasterxml.jackson.annotation.JsonCreator;

public enum ItemKind {
    ITEM,
    EVENT,
    RELATIONSHIP;

    @JsonCreator
    public static ItemKind fromJson(String name) {
        return ItemKind.valueOf(name.toUpperCase());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy