-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathVoltageLevelList.java
More file actions
36 lines (32 loc) · 1.03 KB
/
VoltageLevelList.java
File metadata and controls
36 lines (32 loc) · 1.03 KB
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
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.impl.EmptyLists;
public interface VoltageLevelList extends GroupListIfc<VoltageLevel>
{
static VoltageLevelList emptyList() {return EmptyLists.EMPTY_VOLTAGELEVELS;}
float getBaseKV(int ndx) throws PAModelException;
void setBaseKV(int ndx, float k) throws PAModelException;
float[] getBaseKV() throws PAModelException;
void setBaseKV(float[] kv) throws PAModelException;
static Set<ColumnMeta> _Cols = EnumSet.copyOf(Arrays
.asList(new ColumnMeta[] { ColumnMeta.VlevBASKV, ColumnMeta.VlevID,
ColumnMeta.VlevNAME }));
@Override
default Set<ColumnMeta> getColTypes()
{
return _Cols;
}
@Override
default ListMetaType getListMeta()
{
return ListMetaType.VoltageLevel;
}
}