org.openmuc.jdlms.interfaceclass.InterfaceClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdlms Show documentation
Show all versions of jdlms Show documentation
jDLMS is a library implementing the DLMS/COSEM (IEC 62056) communication standard.
The newest version!
/*
* Copyright 2012-2023 Fraunhofer ISE
*
* This file is part of jDLMS.
* For more information visit http://www.openmuc.org
*
* jDLMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* jDLMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with jDLMS. If not, see .
*
*/
package org.openmuc.jdlms.interfaceclass;
/**
* This enumeration contains interface classes defined in IEC 62056-62.
*
* @deprecated since 1.5.1. Use the none enum initializer of {@link org.openmuc.jdlms.MethodParameter} and
* {@link org.openmuc.jdlms.AttributeAddress}.
*/
@Deprecated
public enum InterfaceClass {
DATA(1, 0),
REGISTER(3, 0),
EXTENDED_REGISTER(4, 0),
DEMAND_REGISTER(5, 0),
REGISTER_ACTIVATION(6, 0),
PROFILE_GENERIC(7, 1),
CLOCK(8, 0),
SCRIPT_TABLE(9, 0),
SCHEDULE(10, 0),
SPECIAL_DAYS_TABLE(11, 0),
ASSOCIATION_SN(12, 2),
ASSOCIATION_LN(15, 1),
SAP_ASSIGNMENT(17, 0),
IMAGE_TRANSFER(18, 0),
ACTIVITY_CALENDAR(20, 0),
REGISTER_MONITOR(21, 0),
UTILITY_TABLES(26, 0),
SINGLE_ACTION_SCHEDULE(22, 0),
REGISTER_TABLE(61, 0),
STATUS_MAPPING(63, 0),
DISCONNECT_CONTROL(70, 0),
MBUS_CLIENT(72, 1),
// Protocol related interface classes
IEC_LOCAL_PORT_SETUP(19, 1),
MODEM_CONFIGURATION(27, 1),
AUTO_ANSWER(28, 0),
AUTO_CONNECT(29, 1),
IEC_HDLC_SETUP_CLASS(23, 1),
IEC_TWISTED_PAIR(24, 0),
TCP_UDP_SETUP(41, 0),
IP_V4_SETUP(42, 0),
ETHERNET_SETUP(43, 0),
PPP_SETUP(44, 0),
GPRS_MODEM_SETUP(45, 0),
SMTP_SETUP(46, 0),
SECURITY_SETUP(64, 0),
UNKNOWN(-1, -1);
private int id;
private int version;
private static final InterfaceClass[] values = InterfaceClass.values();
private InterfaceClass(int id, int version) {
this.id = id;
this.version = version;
}
public static InterfaceClass interfaceClassFor(int id) {
for (InterfaceClass interfaceClass : values) {
if (interfaceClass.id == id) {
return interfaceClass;
}
}
return UNKNOWN;
}
public int id() {
return id;
}
public int version() {
return version;
}
}