All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.whatsapp.model.signal.auth.WebInfoPlatformSpec Maven / Gradle / Ivy

package it.auties.whatsapp.model.signal.auth;

import it.auties.whatsapp.model.signal.auth.WebInfo.Platform;
import java.util.Arrays;
import java.util.Optional;

public class WebInfoPlatformSpec {
    public static Integer encode(Platform protoInputObject) {
      if(protoInputObject == null) {
         return null;
      }
      return protoInputObject.index;
    }

    public static Optional decode(int index) {
        return Arrays.stream(Platform.values())
                .filter(entry -> entry.index == index)
                .findFirst();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy