1 /*
2 * Copyright 2016-2022 The OSHI Project Contributors
3 * SPDX-License-Identifier: MIT
4 */
5 package oshi.hardware;
6
7 import oshi.annotation.concurrent.Immutable;
8
9 /**
10 * Display refers to the information regarding a video source and monitor identified by the EDID standard.
11 */
12 @Immutable
13 public interface Display {
14 /**
15 * The EDID byte array.
16 *
17 * @return The original unparsed EDID byte array.
18 */
19 byte[] getEdid();
20 }