Skip to content

Commit

Permalink
Add more getType where it makes sense
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed May 7, 2024
1 parent a881ee9 commit 91bba92
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ public LongType get()
return t;
}

@Override
public LongType getType()
{
return t;
}

@Override
public PositionRandomAccess copy()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ public DoubleType get()
return t;
}

@Override
public DoubleType getType()
{
return t;
}

@Override
public RealPositionRealRandomAccess copy()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ public T get()
return sourceAccess.get();
}

@Override
public T getType()
{
return sourceAccess.getType();
}

@Override
public RealTransformRandomAccess copy()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ public T get()
return sourceAccess.get();
}

@Override
public T getType()
{
return sourceAccess.getType();
}

@Override
public RealTransformRealRandomAccess copy()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,12 @@ public T get()
return sourceAccess.get();
}

@Override
public T getType()
{
return sourceAccess.getType();
}

@Override
public StackingRealRandomAccess copy()
{
Expand Down

0 comments on commit 91bba92

Please sign in to comment.