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

oshi.hardware.common.AbstractSensors Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/**
 * Oshi (https://github.com/dblock/oshi)
 *
 * Copyright (c) 2010 - 2016 The Oshi Project Team
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Maintainers:
 * dblock[at]dblock[dot]org
 * widdis[at]gmail[dot]com
 * enrico.bianchi[at]gmail[dot]com
 *
 * Contributors:
 * https://github.com/dblock/oshi/graphs/contributors
 */
package oshi.hardware.common;

import oshi.hardware.Sensors;

public abstract class AbstractSensors implements Sensors {

    private static final long serialVersionUID = 1L;

    /**
     * {@inheritDoc}
     */
    @Override
    public abstract double getCpuTemperature();

    /**
     * {@inheritDoc}
     */
    @Override
    public abstract int[] getFanSpeeds();

    /**
     * {@inheritDoc}
     */
    @Override
    public abstract double getCpuVoltage();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy