Enum PoiDisplayState

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum PoiDisplayState
    extends Enum<PoiDisplayState>
                        

    Declares the states that a com.pointrlabs.core.poi.models can be in when shown on the map

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      NORMAL

      Initial state for com.pointrlabs.core.poi.models when it's drawn on the map

      HIGHLIGHTED

      Indicates that the com.pointrlabs.core.poi.models is highlighted either by user selection or a call to com.pointrlabs.core.map.widget.mapview.PTRMapFragment.highlightPoi programmatically

    • Method Summary

      Modifier and Type Method Description
      final PoiDisplayState valueOf(String value) Returns the enum constant of this type with the specified name.
      final Array<PoiDisplayState> values() Returns an array containing the constants of this enum type, in the order they're declared.
      final EnumEntries<PoiDisplayState> getEntries() Declares the states that a com.pointrlabs.core.poi.models can be in when shown on the map
      • Methods inherited from class kotlin.Enum

        getName, getOrdinal
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • valueOf

         final PoiDisplayState valueOf(String value)

        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

      • values

         final Array<PoiDisplayState> values()

        Returns an array containing the constants of this enum type, in the order they're declared.

        This method may be used to iterate over the constants.