com.exceljava.jinx.ExcelReturnConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jinx Show documentation
Show all versions of jinx Show documentation
Create high performance Microsoft Excel user defined functions (UDFs) and more in Java
/*
* Copyright (C) 2017 - present by PyXLL Ltd.
*/
package com.exceljava.jinx;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* ExcelReturnConverter annotation for methods that are used
* to convert Java types to standard Excel types.
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelReturnConverter {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy