Annotation ExperimentalDigitalCredentialsSdk

  • All Implemented Interfaces:

    @Target(allowedTargets = {AnnotationTarget.CLASS}) 
    public @interface ExperimentalDigitalCredentialsSdk
    
                        

    Marks an API as experimental within the Digital Credentials SDK.

    Usage of this annotation indicates that the annotated class is part of an experimental feature that may be subject to breaking changes in future releases. APIs marked with this annotation require explicit opt-in by using @OptIn(ExperimentalDigitalCredentialsSdk::class).

    This annotation enforces strict opt-in at the ERROR level, meaning that usage without proper opt-in will result in a compilation error.

    To use an experimental API, you must explicitly opt in:

    @OptIn(ExperimentalDigitalCredentialsSdk::class)
    fun myFunction() {
        // Experimental API usage
    }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail