Example usage for com.fasterxml.jackson.annotation ObjectIdGenerator getClass

List of usage examples for com.fasterxml.jackson.annotation ObjectIdGenerator getClass

Introduction

In this page you can find the example usage for com.fasterxml.jackson.annotation ObjectIdGenerator getClass.

Prototype

@HotSpotIntrinsicCandidate
public final native Class<?> getClass();

Source Link

Document

Returns the runtime class of this Object .

Usage

From source file:com.chiralbehaviors.CoRE.RuleformIdGenerator.java

@Override
public boolean canUseFor(ObjectIdGenerator<?> gen) {
    return gen.getClass() == getClass() && gen.getScope() == scope;
}