124 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlin.time;
 | |
| 
 | |
| import kotlin.Metadata;
 | |
| import kotlin.jvm.internal.Intrinsics;
 | |
| 
 | |
| /* compiled from: DurationUnit.kt */
 | |
| @Metadata(d1 = {"\u0000\u001c\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\f\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\u001a\u0018\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\u0001\u001a\u0010\u0010\u0006\u001a\u00020\u00012\u0006\u0010\u0007\u001a\u00020\bH\u0001\u001a\f\u0010\u0007\u001a\u00020\b*\u00020\u0001H\u0001¨\u0006\t"}, d2 = {"durationUnitByIsoChar", "Lkotlin/time/DurationUnit;", "isoChar", "", "isTimeComponent", "", "durationUnitByShortName", "shortName", "", "kotlin-stdlib"}, k = 5, mv = {1, 8, 0}, xi = 49, xs = "kotlin/time/DurationUnitKt")
 | |
| /* loaded from: classes.dex */
 | |
| class DurationUnitKt__DurationUnitKt extends DurationUnitKt__DurationUnitJvmKt {
 | |
| 
 | |
|     /* compiled from: DurationUnit.kt */
 | |
|     @Metadata(k = 3, mv = {1, 8, 0}, xi = 48)
 | |
|     public /* synthetic */ class WhenMappings {
 | |
|         public static final /* synthetic */ int[] $EnumSwitchMapping$0;
 | |
| 
 | |
|         static {
 | |
|             int[] iArr = new int[DurationUnit.values().length];
 | |
|             try {
 | |
|                 iArr[DurationUnit.NANOSECONDS.ordinal()] = 1;
 | |
|             } catch (NoSuchFieldError unused) {
 | |
|             }
 | |
|             try {
 | |
|                 iArr[DurationUnit.MICROSECONDS.ordinal()] = 2;
 | |
|             } catch (NoSuchFieldError unused2) {
 | |
|             }
 | |
|             try {
 | |
|                 iArr[DurationUnit.MILLISECONDS.ordinal()] = 3;
 | |
|             } catch (NoSuchFieldError unused3) {
 | |
|             }
 | |
|             try {
 | |
|                 iArr[DurationUnit.SECONDS.ordinal()] = 4;
 | |
|             } catch (NoSuchFieldError unused4) {
 | |
|             }
 | |
|             try {
 | |
|                 iArr[DurationUnit.MINUTES.ordinal()] = 5;
 | |
|             } catch (NoSuchFieldError unused5) {
 | |
|             }
 | |
|             try {
 | |
|                 iArr[DurationUnit.HOURS.ordinal()] = 6;
 | |
|             } catch (NoSuchFieldError unused6) {
 | |
|             }
 | |
|             try {
 | |
|                 iArr[DurationUnit.DAYS.ordinal()] = 7;
 | |
|             } catch (NoSuchFieldError unused7) {
 | |
|             }
 | |
|             $EnumSwitchMapping$0 = iArr;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public static final String shortName(DurationUnit durationUnit) {
 | |
|         Intrinsics.checkNotNullParameter(durationUnit, "<this>");
 | |
|         switch (WhenMappings.$EnumSwitchMapping$0[durationUnit.ordinal()]) {
 | |
|             case 1:
 | |
|                 return "ns";
 | |
|             case 2:
 | |
|                 return "us";
 | |
|             case 3:
 | |
|                 return "ms";
 | |
|             case 4:
 | |
|                 return "s";
 | |
|             case 5:
 | |
|                 return "m";
 | |
|             case 6:
 | |
|                 return "h";
 | |
|             case 7:
 | |
|                 return "d";
 | |
|             default:
 | |
|                 throw new IllegalStateException(("Unknown unit: " + durationUnit).toString());
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public static final DurationUnit durationUnitByShortName(String shortName) {
 | |
|         Intrinsics.checkNotNullParameter(shortName, "shortName");
 | |
|         int hashCode = shortName.hashCode();
 | |
|         if (hashCode != 100) {
 | |
|             if (hashCode != 104) {
 | |
|                 if (hashCode != 109) {
 | |
|                     if (hashCode != 115) {
 | |
|                         if (hashCode != 3494) {
 | |
|                             if (hashCode != 3525) {
 | |
|                                 if (hashCode == 3742 && shortName.equals("us")) {
 | |
|                                     return DurationUnit.MICROSECONDS;
 | |
|                                 }
 | |
|                             } else if (shortName.equals("ns")) {
 | |
|                                 return DurationUnit.NANOSECONDS;
 | |
|                             }
 | |
|                         } else if (shortName.equals("ms")) {
 | |
|                             return DurationUnit.MILLISECONDS;
 | |
|                         }
 | |
|                     } else if (shortName.equals("s")) {
 | |
|                         return DurationUnit.SECONDS;
 | |
|                     }
 | |
|                 } else if (shortName.equals("m")) {
 | |
|                     return DurationUnit.MINUTES;
 | |
|                 }
 | |
|             } else if (shortName.equals("h")) {
 | |
|                 return DurationUnit.HOURS;
 | |
|             }
 | |
|         } else if (shortName.equals("d")) {
 | |
|             return DurationUnit.DAYS;
 | |
|         }
 | |
|         throw new IllegalArgumentException("Unknown duration unit short name: " + shortName);
 | |
|     }
 | |
| 
 | |
|     public static final DurationUnit durationUnitByIsoChar(char c, boolean z) {
 | |
|         if (!z) {
 | |
|             if (c == 'D') {
 | |
|                 return DurationUnit.DAYS;
 | |
|             }
 | |
|             throw new IllegalArgumentException("Invalid or unsupported duration ISO non-time unit: " + c);
 | |
|         }
 | |
|         if (c == 'H') {
 | |
|             return DurationUnit.HOURS;
 | |
|         }
 | |
|         if (c == 'M') {
 | |
|             return DurationUnit.MINUTES;
 | |
|         }
 | |
|         if (c == 'S') {
 | |
|             return DurationUnit.SECONDS;
 | |
|         }
 | |
|         throw new IllegalArgumentException("Invalid duration ISO time unit: " + c);
 | |
|     }
 | |
| }
 |