blob: b1e32d1eb2cb558ffa09e2e9f87995e320651c13 [file] [log] [blame]
// Copyright (C) 2009 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.common.data;
import com.google.gerrit.reviewdb.client.ApprovalCategory;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ApprovalTypes {
protected List<ApprovalType> approvalTypes;
private transient Map<ApprovalCategory.Id, ApprovalType> byId;
private transient Map<String, ApprovalType> byLabel;
protected ApprovalTypes() {
}
public ApprovalTypes(final List<ApprovalType> approvals) {
approvalTypes = approvals;
byCategory();
}
public List<ApprovalType> getApprovalTypes() {
return approvalTypes;
}
public ApprovalType byId(final ApprovalCategory.Id id) {
return byCategory().get(id);
}
private Map<ApprovalCategory.Id, ApprovalType> byCategory() {
if (byId == null) {
byId = new HashMap<ApprovalCategory.Id, ApprovalType>();
if (approvalTypes != null) {
for (final ApprovalType t : approvalTypes) {
byId.put(t.getCategory().getId(), t);
}
}
}
return byId;
}
public ApprovalType byLabel(String labelName) {
return byLabel().get(labelName.toLowerCase());
}
private Map<String, ApprovalType> byLabel() {
if (byLabel == null) {
byLabel = new HashMap<String, ApprovalType>();
if (approvalTypes != null) {
for (ApprovalType t : approvalTypes) {
byLabel.put(t.getCategory().getLabelName().toLowerCase(), t);
}
}
}
return byLabel;
}
}