io.orchestrate.client.ItemKind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orchestrate-client Show documentation
Show all versions of orchestrate-client Show documentation
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