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

com.android.sdklib.devices.State Maven / Gradle / Ivy

There is a newer version: 25.3.0
Show newest version
/*
 * Copyright (C) 2012 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 com.android.sdklib.devices;

import com.android.annotations.NonNull;
import com.android.resources.KeyboardState;
import com.android.resources.NavigationState;
import com.android.resources.ScreenOrientation;

public class State {
    private boolean mDefaultState;
    private String mName;
    private String mDescription;
    private ScreenOrientation mOrientation;
    private KeyboardState mKeyState;
    private NavigationState mNavState;
    private Hardware mHardwareOverride;

    public boolean isDefaultState() {
        return mDefaultState;
    }

    public void setDefaultState(boolean defaultState) {
        mDefaultState = defaultState;
    }

    @NonNull
    public String getName() {
        return mName;
    }

    public void setName(@NonNull String name) {
        mName = name;
    }

    public String getDescription() {
        return mDescription;
    }

    public void setDescription(String description) {
        mDescription = description;
    }

    public ScreenOrientation getOrientation() {
        return mOrientation;
    }

    public void setOrientation(ScreenOrientation orientation) {
        mOrientation = orientation;
    }

    public KeyboardState getKeyState() {
        return mKeyState;
    }

    public void setKeyState(KeyboardState keyState) {
        mKeyState = keyState;
    }

    public NavigationState getNavState() {
        return mNavState;
    }

    public void setNavState(NavigationState navState) {
        mNavState = navState;
    }

    @NonNull
    public Hardware getHardware() {
        return mHardwareOverride;
    }

    public void setHardware(@NonNull Hardware hw) {
        mHardwareOverride = hw;
    }

    /**
     * Returns a copy of the object that shares no state with it,
     * but is initialized to equivalent values.
     *
     * @return A copy of the object.
     */
    public State deepCopy() {
        State s = new State();
        s.setDefaultState(isDefaultState());
        s.setName(getName());
        s.setDescription(getDescription());
        s.setOrientation(getOrientation());
        s.setKeyState(getKeyState());
        s.setNavState(getNavState());
        s.setHardware(getHardware().deepCopy());
        return s;
    }

    @Override
    public boolean equals(Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof State)) {
            return false;
        }
        State s = (State) o;
        return mDefaultState == s.isDefaultState()
                && mName.equals(s.getName())
                && mDescription.equals(s.getDescription())
                && mOrientation.equals(s.getOrientation())
                && mKeyState.equals(s.getKeyState())
                && mNavState.equals(s.getNavState())
                && mHardwareOverride.equals(s.getHardware());
    }

    @Override
    public int hashCode() {
        int hash = 17;
        hash = 31 * hash + (mDefaultState ? 1 : 0);
        if (mName != null) {
            hash = 31 * hash + mName.hashCode();
        }
        if (mDescription != null) {
            hash = 31 * hash + mDescription.hashCode();
        }
        hash = 31 * hash + mOrientation.ordinal();
        hash = 31 * hash + mKeyState.ordinal();
        hash = 31 * hash + mNavState.ordinal();
        hash = 31 * hash + mHardwareOverride.hashCode();
        return hash;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("State ");
        return sb.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy