Uses of Enum Class
org.apache.hadoop.hdfs.server.diskbalancer.DiskBalancerException.Result
Packages that use DiskBalancerException.Result
Package
Description
Disk Balancer connects to a
.DataNode and attempts to spread data across all volumes evenly.-
Uses of DiskBalancerException.Result in org.apache.hadoop.hdfs.server.diskbalancer
Methods in org.apache.hadoop.hdfs.server.diskbalancer that return DiskBalancerException.ResultModifier and TypeMethodDescriptionDiskBalancerException.getResult()Returns the result.static DiskBalancerException.ResultReturns the enum constant of this class with the specified name.static DiskBalancerException.Result[]DiskBalancerException.Result.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.apache.hadoop.hdfs.server.diskbalancer with parameters of type DiskBalancerException.ResultModifierConstructorDescriptionDiskBalancerException(String message, Throwable cause, DiskBalancerException.Result result) Constructs anIOExceptionwith the specified detail message and cause.DiskBalancerException(String message, DiskBalancerException.Result result) Constructs anIOExceptionwith the specified detail message.DiskBalancerException(Throwable cause, DiskBalancerException.Result result) Constructs anIOExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).