org.fugerit.java.nhg.reflect.config.EntryCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of native-helper-graalvm Show documentation
Show all versions of native-helper-graalvm Show documentation
Utilities for Graal VM code generation
The newest version!
package org.fugerit.java.nhg.reflect.config;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"typeReachable"
})
@AllArgsConstructor
@NoArgsConstructor
public class EntryCondition {
/*
* Fully qualified class name of the class that must be reachable in order to register the class for reflection
*
*
* (Required)
*
*/
@JsonProperty("typeReachable")
@Getter @Setter private String typeReachable;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy