19 package org.sleuthkit.autopsy.timeline.zooming;
21 import org.openide.util.NbBundle;
39 this.displayName = displayName;
44 return values()[ordinal() + 1];
45 }
catch (ArrayIndexOutOfBoundsException e) {
52 return values()[ordinal() - 1];
53 }
catch (ArrayIndexOutOfBoundsException e) {
59 switch (relativeDetail) {
63 return moreDetailed();
65 return lessDetailed();
67 throw new IllegalArgumentException(
"Unknown RelativeDetail value " + relativeDetail);
72 int compareTo = this.compareTo(other);
75 }
else if (compareTo == 0) {
DescriptionLoD(String displayName)
RelativeDetail getDetailLevelRelativeTo(DescriptionLoD other)
DescriptionLoD lessDetailed()
DescriptionLoD moreDetailed()
DescriptionLoD withRelativeDetail(RelativeDetail relativeDetail)