Class EnvironmentFeatureSet

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private javax.annotation.processing.ProcessingEnvironment env  
      private java.util.Map<FeatureType<?>,​Feature<?>> featuresByType  
    • Constructor Summary

      Constructors 
      Constructor Description
      EnvironmentFeatureSet​(javax.annotation.processing.ProcessingEnvironment env)
      Constructs a feature set using the given processing environment.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T extends Feature<T>>
      T
      get​(FeatureType<T> featureType)
      Returns an instance of featureType.
      • Methods inherited from class java.lang.Object

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

      • env

        private final javax.annotation.processing.ProcessingEnvironment env
      • featuresByType

        private final java.util.Map<FeatureType<?>,​Feature<?>> featuresByType
    • Constructor Detail

      • EnvironmentFeatureSet

        public EnvironmentFeatureSet​(javax.annotation.processing.ProcessingEnvironment env)
        Constructs a feature set using the given processing environment.
    • Method Detail