public interface

LongSerializer<T>

 androidx.appsearch.app.LongSerializer<T>

Subclasses:

Document.LongProperty.DefaultSerializer

Gradle dependencies

compile group: 'androidx.appsearch', name: 'appsearch', version: '1.1.0-alpha05'

  • groupId: androidx.appsearch
  • artifactId: appsearch
  • version: 1.1.0-alpha05

Artifact androidx.appsearch:appsearch:1.1.0-alpha05 it located at Google repository (https://maven.google.com/)

Overview

Serializes some to and from a long.

Summary

Methods
public java.lang.Objectdeserialize(long value)

Deserializes a from a long.

public longserialize(java.lang.Object instance)

Serializes a to a long.

Methods

public long serialize(java.lang.Object instance)

Serializes a to a long.

public java.lang.Object deserialize(long value)

Deserializes a from a long. Returns null if deserialization failed.

Source

/*
 * Copyright 2023 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.appsearch.app;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;

/**
 * Serializes some {@link T} to and from a long.
 *
 * @param <T> The custom type that can be serialized to a long.
 */
// @exportToFramework:skipFile()
public interface LongSerializer<T> {
    /**
     * Serializes a {@link T} to a long.
     */
    long serialize(@NonNull T instance);

    /**
     * Deserializes a {@link T} from a long. Returns null if deserialization failed.
     */
    @Nullable
    T deserialize(long value);
}