-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSwitchList.java
49 lines (45 loc) · 1.92 KB
/
SwitchList.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.powerdata.openpa;
/*
* Copyright (c) 2016, PowerData Corporation, Incremental Systems Corporation
* All rights reserved.
* Licensed under the BSD-3 Clause License.
* See full license at https://powerdata.github.io/openpa/LICENSE.md
*/
import java.util.Arrays;
import java.util.EnumSet;
import java.util.Set;
import com.powerdata.openpa.Switch.State;
import com.powerdata.openpa.impl.EmptyLists;
public interface SwitchList extends TwoTermDevListIfc<Switch>
{
static SwitchList emptyList() {return EmptyLists.EMPTY_SWITCHES;}
State getState(int ndx) throws PAModelException;
void setState(int ndx, State state) throws PAModelException;
State[] getState() throws PAModelException;
void setState(State[] state) throws PAModelException;
boolean isOperableUnderLoad(int ndx) throws PAModelException;
void setOperableUnderLoad(int ndx, boolean op) throws PAModelException;
boolean[] isOperableUnderLoad() throws PAModelException;
void setOperableUnderLoad(boolean[] op) throws PAModelException;
boolean isEnabled(int ndx) throws PAModelException;
void setEnabled(int ndx, boolean enable) throws PAModelException;
boolean[] isEnabled() throws PAModelException;
void setEnabled(boolean[] enable) throws PAModelException;
float getTransitTime(int ndx) throws PAModelException;
float[] getTransitTime() throws PAModelException;
void setTransitTime(int ndx, float t) throws PAModelException;
void setTransitTime(float[] t) throws PAModelException;
static Set<ColumnMeta> Cols = EnumSet.copyOf(Arrays
.asList(new ColumnMeta[] { ColumnMeta.SwBUSFROM,
ColumnMeta.SwBUSTO, ColumnMeta.SwENAB, ColumnMeta.SwID,
ColumnMeta.SwNAME, ColumnMeta.SwINSVC, ColumnMeta.SwOPLD,
ColumnMeta.SwPFROM, ColumnMeta.SwPTO, ColumnMeta.SwQFROM,
ColumnMeta.SwQTO, ColumnMeta.SwTRTIME}));
@Override
default Set<ColumnMeta> getColTypes()
{
return Cols;
}
@Override
default ListMetaType getListMeta() {return ListMetaType.Switch;}
}