org.springframework.boot.origin

Interface OriginLookup<K>

    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method and Description
      Origin getOrigin(K key)
      Return the origin of the given key or null if the origin cannot be determined.
      static <K> Origin getOrigin(java.lang.Object source, K key)
      Attempt to lookup the origin from the given source.
      default java.lang.String getPrefix()
      Return the implicit prefix that is applied when performing a lookup or null if no prefix is used.
      default boolean isImmutable()
      Return true if this lookup is immutable and has contents that will never change.
    • Method Detail

      • getOrigin

        Origin getOrigin(K key)
        Return the origin of the given key or null if the origin cannot be determined.
        Parameters:
        key - the key to lookup
        Returns:
        the origin of the key or null
      • isImmutable

        default boolean isImmutable()
        Return true if this lookup is immutable and has contents that will never change.
        Returns:
        if the lookup is immutable
        Since:
        2.2.0
      • getPrefix

        default java.lang.String getPrefix()
        Return the implicit prefix that is applied when performing a lookup or null if no prefix is used. Prefixes can be used to disambiguate keys that would otherwise clash. For example, if multiple applications are running on the same machine a different prefix can be set on each application to ensure that different environment variables are used.
        Returns:
        the prefix applied by the lookup class or null.
        Since:
        2.5.0
      • getOrigin

        static <K> Origin getOrigin(java.lang.Object source,
                                    K key)
        Attempt to lookup the origin from the given source. If the source is not a OriginLookup or if an exception occurs during lookup then null is returned.
        Type Parameters:
        K - the key type
        Parameters:
        source - the source object
        key - the key to lookup
        Returns:
        an Origin or null