Files
oxygen-api/src/main/kotlin/top/fatweb/oxygen/api/annotation/Trim.kt
2024-02-26 17:48:13 +08:00

15 lines
337 B
Kotlin

package top.fatweb.oxygen.api.annotation
import java.lang.annotation.Inherited
/**
* Trim string annotation
*
* @author FatttSnake, fatttsnake@gmail.com
* @since 1.0.0
*/
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CLASS, AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.RUNTIME)
@Inherited
annotation class Trim