Class UtilityTier
- java.lang.Object
- 
- com.esri.arcgisruntime.utilitynetworks.UtilityTier
 
- 
 public final class UtilityTier extends Object Defines a utility network tier.Tiers demarcate a logical level within a network. For example, in an electric distribution network, there may be Subtransmission, Medium Voltage and Low Voltage tiers. - Since:
- 100.7.0
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description UtilityTraceConfigurationgetDefaultTraceConfiguration()Gets a copy of theUtilityTraceConfigurationfor this UtilityTier, if one is defined.StringgetName()Gets the tier's name.intgetRank()Gets the tier's numeric rank.UtilityTierTopologyTypegetTopologyType()Gets the tier's topology type.UtilityTraceConfigurationgetTraceConfiguration()Deprecated.100.12.0.
 
- 
- 
- 
Method Detail- 
getNamepublic String getName() Gets the tier's name.- Returns:
- the name
- Since:
- 100.7.0
 
 - 
getRankpublic int getRank() Gets the tier's numeric rank.It is possible for several tiers to have the same numeric rank. For example, in an electric distribution network, Radial Medium Voltage and Radial Multifeed Medium Voltage tiers would have the same rank. When doing a trace between a source tier and a target tier, the source and target tiers define an upper and lower tier value range for a trace. The trace will stop if it encounters a tier whose rank is outside the range specified by the source and target tiers. - Returns:
- the numeric rank
- Since:
- 100.7.0
 
 - 
getTopologyTypepublic UtilityTierTopologyType getTopologyType() Gets the tier's topology type.- Returns:
- the topology type
- Since:
- 100.7.0
 
 - 
getTraceConfiguration@Deprecated public UtilityTraceConfiguration getTraceConfiguration() Deprecated.100.12.0. UsegetDefaultTraceConfiguration()method instead to return a copy of theUtilityTraceConfigurationdefined for this UtilityTier.Gets the tier's trace configuration.This UtilityTraceConfigurationis part of the utility network metadata and should not be modified. Any change on this object will be discarded.- Returns:
- the trace configuration
- Since:
- 100.7.0
 
 - 
getDefaultTraceConfigurationpublic UtilityTraceConfiguration getDefaultTraceConfiguration() Gets a copy of theUtilityTraceConfigurationfor this UtilityTier, if one is defined.- Returns:
- a copy of the UtilityTraceConfigurationdefined for this UtilityTier, or null if none
- Since:
- 100.12.0
 
 
- 
 
-