Example usage for javax.persistence AttributeConverter getClass

List of usage examples for javax.persistence AttributeConverter getClass

Introduction

In this page you can find the example usage for javax.persistence AttributeConverter getClass.

Prototype

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

Source Link

Document

Returns the runtime class of this Object .

Usage

From source file:io.stallion.dataAccess.db.DB.java

public DB registerConverter(AttributeConverter converter) {
    converters.put(converter.getClass().getName(), converter);
    return this;
}